- 因为好多软件在centos中yum下的名字与Ubuntu的apt-get不同,所以需要使用yum查找对应的软件包名,可以用 yum search keyword这样的命令来进行搜索
CentOS Yum 命令详解 http://www.blogjava.net/jvict/articles/305149.html 我们总共需要安装如下这些部件来搭建环境
numpy, scipy, setuptools, scikits.learn, python 和 C++ 编译器首先安装numpy,scipy
yum install numpy scipy gcc gcc-c++ python-devel
如果你在使用Python 2 >= 2.7.9或者Python 3 > 3.4(因为python 2 和 python 3有些不同,详见),pip已经被安装,但你需要更新下pip。
- 安装pip,在这里下载get-pip.py.
- 然后
python get-pip.py
- 3.
References:
- pip installation https://pip.pypa.io/en/latest/installing/