[scikit-learn]nose,numpy,scipy,scikit-learn安装教程

  由于之前在公司实习的时候使用的时候服务器,没有root权限,所以无法使用如apt-get install 等安装命令,已知在学着linux 下面安装numpy 和scipy里面的安装方法,可惜一直都失败了。后来回到学校就使用个人电脑,linux发行版是Ubuntu,所以就可以直接使用

sudo apt-get install python-nose
sudo apt-get install python-numpy
sudo apt-get install python-scipy
sudo apt-get install python-matplotlib
sudo apt-get install python-sklearn

对于其他发行版可以参考在Linux上安装NumPy、Matplotlib、SciPy和IPython

然后就安装好了,好省心哦,麻烦就是使用了root权限,在服务器时就难以做到了。

你可能感兴趣的:(OS)