Ubuntu系统自带python2.7(默认)和python3.5,所以不需要自己安装python。我们可以使用命令python -V或python3 -V来查看默认的python版本。
现在越来越多的人从以前使用2.7版本过渡到3.5,这里就要知道如何随意的切换ubuntu下的默认python版本。这里利用alternatives
机制更改,在终端下输入两条命令:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
此时查看python版本如下:
此时,在命令端输入安装命令则会自动安装支持py3的包。
numpy安装:
sudo apt-get install python-numpy
scipy安装:
sudo apt-get install python-scipy
opencv安装:
sudo apt-get install python-opencv
matplotlib安装:
sudo apt-get install python-matplotlib
pandas安装:
sudo apt-get install python-pandas
机器学习库scikit-learn安装:
sudo apt-get install python-sklearn
最后想切换回去或再切换回来,只需执行下面一条命令,再选择相应序号即可,*表示目前选中的目标。
sudo update-alternatives --config python