赞
踩
如何在Ubuntu环境中安装升级python版本
发布时间:2020-06-05 14:54:05
来源:亿速云
阅读:258
这篇文章主要介绍了在Ubuntu环境中安装升级python版本的方法,具有一定借鉴价值,需要的朋友可以参考下。如下资料是关于python版的详细步骤内容。
1. 下载python3.6源码包wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz
2. 解压并开始安装tar -xvf Python-3.6.5.tgz
cd Python-3.6.5/
./configure
make && make install
3. 替换python3为python3.6update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1
update-alternatives --install /usr/bin/python3 python3 /usr/local/bin/python3.6 2
update-alternatives --config python3
4. 解决pip3安装问题
替换版本之后 pip3 install 时会提示错误subprocess.CalledProcessError: Command 'lsb_release -a' returned non-zero exit status 1., 重点关注lsb_release.py这个模块
我们将python3.5中的lsb_release.py复制到python3.6中root@ubuntu:~# find / -name 'lsb_release.py'
/usr/lib/python2.7/dist-packages/lsb_releas
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。