有时通过apt安装的版本不合适,只能自己编译。
https://www.python.org/downloads/
tar xf Python-3.6.15.tgz
# 默认安装目录是/usr/local/lib/python3.6, 也可以指定安装目录 # ./configure --prefix=/usr/local/python3.6 ./configure make sudo make install
为了使用方便,建议在PATH中加入新路径。编译.bashrc,
export PATH=/usr/local/bin:${PATH}
安装后的执行文件叫python3.6,可以根据需要自行更改。查看
$ python3.6 -V Python 3.6.15