Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 347 Bytes

Python源码安装.md

File metadata and controls

30 lines (19 loc) · 347 Bytes

Python 源码安装

下载地址:https://www.python.org/downloads/release/python-382/

只有源码包,没有 RPM 包。下载源码包,编译安装。

解压:

$ tar zxvf Python-2.7.17.tgz

配置:

$ ./configure --prefix=/usr/local/

编译:

$ make 

安装:

$ make install