1.去官网下载要安装的对应版本的python的源代码
下载地址:
你可以选择你要下载的版本,用wget指令来下载相应的源代码
2.解压下载的代码包
tar -xvf Python-2.7.13.tar.xz
3.查找configure文件
find . -name configure
4.进行配置
./configure
5.编译
makemake install
6.检查
python
如出现以下则安装完成
本文共 256 字,大约阅读时间需要 1 分钟。
1.去官网下载要安装的对应版本的python的源代码
下载地址:
你可以选择你要下载的版本,用wget指令来下载相应的源代码
2.解压下载的代码包
tar -xvf Python-2.7.13.tar.xz
3.查找configure文件
find . -name configure
4.进行配置
./configure
5.编译
makemake install
6.检查
python
如出现以下则安装完成
转载于:https://my.oschina.net/u/3659224/blog/1532364