执行以下命令下载 Python 安装包:
# wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz
# tar vxf Python-3.6.4.tgz
# cd Python-3.6.4
# ./configure --enable-shared --prefix=/usr/local CFLAGS=-fPIC --enable-shared
# make && make install
安装结束,执行以下命令,建立软连接:
# ln –s /usr/local/bin/python3/usr/bin/python
如果提示 Python 文件已经存在,需要使用以下命令删除它:
rm -rf /usr/bin/python
检查 Python 版本
[图片]
至此 Python 3 安装完成。
本文链接 https://www.yidiankuaile.com/post/linux-install-python3