1、查看python的版本$ cd /usr/bin/$ ls python* $ ls -al python* //查看依赖关系2、如果版本不合适可以卸载python再重新安装# rpm -qa|grep python|xargs rpm -e --allmatches --nodeps # 卸载python# wget htt...
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
基础教程推荐
猜你喜欢
- CentOS 7.5 安装 Python3.7 2023-09-03
- centos系统 anaconda3(python3)安装pygrib 2023-09-04
- Python基础学习之函数和代码复用详解 2022-09-02
- 四步教你学会打包一个新的Python模块 2022-10-20
- Python 中 Elias Delta 编码详情 2023-08-08
- 基于Python实现股票数据分析的可视化 2023-08-04
- ubuntu 18 python3.6 的安装与 python2的版本切换 2023-09-03
- Centos7下安装python环境 2023-09-04
- python的环境conda简介 2022-10-20
- Python爬取当网书籍数据并数据可视化展示 2023-08-11