我是靠谱客的博主 愤怒小鸭子,最近开发中收集的这篇文章主要介绍ubuntu 14.04 升级python至3.6.5,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

首先前几天升级了ubuntu系统,数据太多没能备份,直接从12升级到14.04了,一切都点的是default,所以和原来配置一样。时间用了大概12个小时多,万幸没有丢数据。

接下来在系统中升级python2.7至3.6.5

参照的步骤:

https://blog.csdn.net/liang19890820/article/details/51079633

接下来用pip3安装numpy出现了问题:

Could not fetch URL https://pypi.python.org/simple/pool/: There was a problem confirming

可能是ssl证书没有认证。但是此时就出错了,显示本文开始提到的错误,大致意思就是安装过程需要SSL,但是那个SSL找不到。

进入python:

import ssl

出现问题:没有_ssl模块, # if we can't import it, let the error propagate

解决方法:

Since --with-ssl is not recognized anymore I just installed the libssl-dev:

sudo apt-get install libssl-dev 

To restart the make first clean up by:

make clean

Then start again and execute the following commands one after the other:

./configure
make
make test
make install

成功。

另一个问题:

ModuleNotFoundError: No module named '_bz2'

ubuntu解决方法: 

sudo apt-get install libbz2-dev 

然后转到python3.6.5目录下,./configure && make test && make && make install


发现一些所用代码的一些库只能在python2里,所以又装回python2,看了软链接的东西。

/usr/bin/python是软链接得到的。

最后

以上就是愤怒小鸭子为你收集整理的ubuntu 14.04 升级python至3.6.5的全部内容,希望文章能够帮你解决ubuntu 14.04 升级python至3.6.5所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部