Ubuntu14.04下,python配置scikit-learn

来源:互联网 发布:php curl exec 乱码 编辑:程序博客网 时间:2024/05/16 07:43


Ubuntu14.04下,python配置scikit-learn


1、首先配置基本的python库


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

2、配置matplotlib库,进行画图之类的


sudo apt-get install python-matplotlib

3、配置scikit-learn库


sudo apt-get install python-sklearn

大功告成!!!

1 0