CentOS python 安装
Posted liumwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS python 安装相关的知识,希望对你有一定的参考价值。
1. 获取源文件
wget https://www.python.org/ftp/python/2.7/Python-2.7.tgz (或 wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz)
tar -vxf Python-2.7.tgz
cd Python-2.7
2. 安装
./configure
make
make install
3. 检查
python -V
Python 3.5.2 (default, Apr 21 2018, 10:12:51) [GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
以上是关于CentOS python 安装的主要内容,如果未能解决你的问题,请参考以下文章