1. 程式人生 > >ubuntu16.04 安裝 python3.6, 並創建虛擬環境(使用python3.6)

ubuntu16.04 安裝 python3.6, 並創建虛擬環境(使用python3.6)

6.0 apt tor repo posit eight pytho ack 2.7


ubuntu16.04 安裝 python3.6, 並創建虛擬環境(使用python3.6

  ubuntu16.04中默認安裝了 python2.7 python3 python3.5.2 (註意 : 這兩個版本不能刪除/卸載,否則系統很容易出錯)

安裝python3.6


sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6

創建虛擬環境(使用python3.6)

  首先找到python3.6安裝在哪裏(默認安裝在 /usr/bin/python3.6

    
查看pyton3.6 安裝路徑 whereis python3.6

  創建虛擬環境,指定python3.6 mkvirtualenv -p /usr/bin/python3.6 mywork 註意 : 這裏一定要聯網 , 如果不成功就再來一遍

 

ubuntu16.04 安裝 python3.6, 並創建虛擬環境(使用python3.6)