目标:从零部署机器学习开发环境,包括python3.7安装、anaconda安装、虚拟环境部署、jupyter notebook界面优化、简单程序运行
1、python安装
https://www.python.org/
2、anaconda安装
https://www.anaconda.com/
3、虚拟环境部署
为方便后续开发,使用anaconda部署新的开发环境
3.1、enviroment》base》open terminal
3.2、 conda create -n env_name(比如把“machine_learning"替换"env_name")
3.3、安装numpy、scikit-learn库: pip( conda ) install package_name
4、jupyter noteboook界面优化
https://github.com/dunovank/jupyter-themes
安装库文件:pip install --upgrade jupyterthemes
主题修改:jt -t oceans16 -f fira -fs 13 -cellw 90% -ofs 11 -dfs 11 -T
5、运行测试