码迷,mamicode.com
首页 > 编程语言 > 详细

云服务器centos系统安装python

时间:2018-10-31 12:39:26      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:nbsp   sts   htm   tar   依赖关系   --   云服务器   configure   symbol   

1、查看python的版本

$ cd /usr/bin/
$ ls python*
$ ls -al python* //查看依赖关系

2、如果版本不合适可以卸载python再重新安装

# rpm -qa|grep python|xargs rpm -e --allmatches --nodeps   # 卸载python
# wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tgz 下载python2.7
# tar -zxvf Python-2.7.12.tgz  # 解压
# 将解压的文件放到python2文件夹中
# cd python2
# ./configure
# make
# sudo make install
# 建立python软连接
# ln -s /usr/local/bin/python /usr/bin/python   // ln -s 新安装的python路径  系统python路径
# 如果提示 ln: creating symbolic link `/usr/bin/python: File exists
# mv /usr/bin/python /usr/bin/python_old    // 去除原来存在的软连接
# ln -s /usr/local/bin/python /usr/bin/python //再精选软连接

3、安装pip

wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate
python get-pip.py
可直接查看配置链接   http://www.cnblogs.com/konglingxi/p/9722351.html

 

云服务器centos系统安装python

标签:nbsp   sts   htm   tar   依赖关系   --   云服务器   configure   symbol   

原文地址:https://www.cnblogs.com/wuyan717/p/9679496.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!