您的位置:首页 > 其它

scikit-learn机器学习环境的搭建

2018-01-07 19:57 239 查看
python 安装

https://www.python.org/getit/

依赖的库

顺序: numpy -> scipy,matplotlib ->scikit-learn

numpy

官方网站:https://pypi.python.org/pypi/numpy

下载后,在目录下: pip install numpy文件名.whl

使用教程:http://scipy.github.io/old-wiki/pages/Tentative_NumPy_Tutorial?action=fullsearch&value=linkto:&context=180

参考: http://blog.csdn.net/sd2558448/article/details/51234809

scipy,matplotlib

https://www.scipy.org/install.html

命令行:python -m pip install –user numpy scipy matplotlib ipython jupyter pandas sympy nose

会把 numpy scipy matplotlib ipython jupyter pandas sympy nose几个库都装上

matplotlib教程:https://www.jianshu.com/p/7fbecf5255f0

scikit-learn

命令行:pip install -U scikit-learn

参考:http://blog.csdn.net/leo_is_ant/article/details/45332603
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: