1、下载
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz
2、解压
# tar -zxvf Python-3.6.4.tgz
# cd Python-3.5.2/
# ./configure
执行 ./configure 时,如果报错:
configure: error: no acceptable C compiler found in $PATH
说明没有安装合适的编译器。这时,需要安装/升级 gcc 及其它依赖包。
# sudo apt-get install make gcc gcc-c++
完成之后,重新执行:
# ./configure
配置完成之后,就可以编译了:
# make
编译完成后,进行安装:
# make install
3、查看版本
# python --version