Python 2.7 install on centos 6.5

来源:互联网 发布:浪漫喜剧电影 知乎 编辑:程序博客网 时间:2024/05/19 23:15


原文: http://supportex.net/blog/2014/09/installing-python-2-7-centos-6-5/

Cenos6.5 default python version is :2.6, base following command to install python 2.7 on centos 6.5

Step1: Install pyenv using curl.

curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash

Step2: Check python 2.7 version

[user@pybox ~]$ pyenv install -l | grep 2.7
Step3: Install related tool packages

yum install zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel mysql-devel
Step4: Install python-2.7.8

pyenv install 2.7.8
Step5:When the compilation process is over, check:
python -VPython 2.6.6
Step6:Let’s mark that we need version 2.7.8:

pyenv local 2.7.8
python -VPython 2.7.8

Here is what was changed:

at .python-version2.7.8

Now it’s installed and ready to use.


0 0
原创粉丝点击