python在ubuntu下有幾種安裝方法:
通過(guò)ubuntu官方的apt工具包安裝
通過(guò)PPA(PersonalPackageArchive)的apt工具包安裝
通過(guò)編譯python源代碼安裝
1、通過(guò)ubuntu官方的apt工具包安裝
sudoapt-getinstallpython2.7
sudoapt-getinstallpython3.4
2、從PPA(PersonalPackageArchives)安裝apt工具包
$sudoapt-getinstallpython-software-properties
$sudoadd-apt-repositoryppa:fkrull/deadsnakes
$sudoapt-getupdate
$sudoapt-getinstallpython2.7
3、從源代碼編譯安裝python
$wget-chttps://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
$tar-xzvfPython-2.7.9.tgz
$cdPython-2.7.9/
$LDFLAGS="-L/usr/lib/x86_64-linux-gnu"./configure
$make
$sudomakeinstall
其中,上面的wget-c(url)是下載命令,參數(shù)-c表示支持?jǐn)帱c(diǎn)下載,url是目標(biāo)文件下載的絕對(duì)路徑。
以上內(nèi)容為大家介紹了ubuntu安裝python3的幾種方式,希望對(duì)大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。