- linux中更新python 版本
下载新版本# wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
解压缩:tar -zxvf Python-3.5.2.tgz
进入解压缩目录,安装配置:cd Python-3.5.2/
./configure
if you want to a release build with all stable optimizations active (PGO, etc), please run:
./configure --enable-optimizations
配置完成后编译:make
安装:make install
验证:python --version
相关链接:
在Windows10和Ubuntu下安装python-pcl的方法:
https://www.jianshu.com/p/d748f27f2371
关于在Ubuntu下安装配置numpy,scipy,matplotlibm,pandas 以及sklearn:
https://blog.youkuaiyun.com/Yakumoyukarilan/article/details/51340358
Python: Ubuntu 安装numpy,scipy,matplotlib:
https://blog.youkuaiyun.com/shomy_liu/article/details/48543449
linux 使用pip3和pip安装numpy,scipy,matplotlib等第三方库:
https://blog.youkuaiyun.com/Sunshine__love/article/details/78576656