正文
1)下載ubuntu鏡像
2)查看鏡像
3)運行容器
docker run -itd --name ubuntu-test ubuntu
4)進(jìn)入容器
sudo docker exec -it ubuntu-test /bin/bash
5)更新源
如果不進(jìn)行這一步的話,有可能會出現(xiàn)這樣的問題:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package Python
運行一次即可
6)安裝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
到此這篇關(guān)于在Docker中的ubuntu中安裝Python3和Pip的問題的文章就介紹到這了,更多相關(guān)Docker ubuntu安裝Python3和Pip內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!