在Docker中的ubuntu中安裝Python3和Pip的問題

正文

1)下載ubuntu鏡像

docker pull ubuntu

2)查看鏡像

docker images

3)運行容器

docker run -itd --name ubuntu-test ubuntu

4)進入容器

sudo docker exec -it ubuntu-test /bin/bash

5)更新源

apt-get update

如果不進行這一步的話,有可能會出現這樣的問題:

Reading package lists… Done
Building dependency tree
Reading state information… Done
E: Unable to locate package Python

運行一次即可

6)安裝python3

apt-get install python3

7)安裝pip3

 apt-get install python3-pip

8)測試

pip3 install numpy
Collecting numpy
 Downloading numpy-1.20.1-cp38-cp38-manylinux2010_x86_64.whl (15.4 MB)
   |████████████████████████████████| 15.4 MB 1.9 MB/s
Installing collected packages: numpy
Successfully installed numpy-1.20.1

到此這篇關於在Docker中的ubuntu中安裝Python3和Pip的問題的文章就介紹到這瞭,更多相關Docker ubuntu安裝Python3和Pip內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: