红联Linux门户
Linux帮助

scikit-learn ubuntu安装

发布时间:2016-03-09 10:50:54来源:linux网站作者:叫我二当家

软件工具包获取方式:

scikit-learn的官方网站:http://scikit-learn.org (肯能需要科学上网)

github网址:https://github.com/scikit-learn/scikit-learn

scikit-learn需要依赖:Python (>= 2.6), NumPy (>= 1.3), SciPy (>= 0.7), setuptools, Python development headers and a working C++ compiler

scikit-learn ubuntu安装


Ubuntu系统:

sudo apt-get install build-essential python-dev python-numpy python-setuptools python-scipy libatlas-dev 


如需跑示例程序则需要安装matplotlib进行画图之类的:

sudo apt-get install python-matplotlib 


如果系统有安装 pip 或者easy_install,则可以进行如下快捷安装:

pip install -U scikit-learn 

或者:

easy_install -U scikit-learn 


更多安装请参见官网:http://scikit-learn.org/stable/install.html


本文永久更新地址:http://www.linuxdiyf.com/linux/18754.html