Ubuntu 18.04系統(tǒng)內(nèi)置了Python 3.6和Python 2.7版本,,以下是在Ubuntu 18.04系統(tǒng)中安裝Python 3.7版本的方法。 1. 執(zhí)行所有升級(jí) sudo apt update sudo apt upgrade -y 2. 安裝編譯Python源程序所需的包 sudo apt install build-essential -y sudo apt install libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev -y sudo apt-get install zlib1g-dev 3. 下載Python 3.7源程序壓縮包 wget https://www./ftp/python/3.7.1/Python-3.7.1.tgz 4. 解壓縮 tar -xzvf Python-3.7.1.tgz 5. 配置 cd Python-3.7.1 ./configure --enable-optimizations 執(zhí)行上述語(yǔ)句將啟用代碼的發(fā)布版本,,可以優(yōu)化二進(jìn)制文件以更好的更快的運(yùn)行,但是需要運(yùn)行測(cè)試,,編譯時(shí)需要花費(fèi)一些時(shí)間(大約半小時(shí)),,也可以不進(jìn)行這一項(xiàng)配置。 6. 編譯和安裝Python 3.7 sudo make sudo make install 7. 查看Python版本 python3 Python 3.7.1 (default, Nov 21 2018, 16:35:49) [GCC 7.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> 出現(xiàn)上述語(yǔ)句說(shuō)明安裝成功,。 8. 升級(jí)pip和更換pip源 sudo pip config set global.index-url https://pypi.tuna./simple pip3 install --upgrade pip
|