1. 要求windows系统
2. pycharm编程环境并要求配置好python3.x环境
pycharm可在官网下载,下面是链接。
3. 要求在windows下python环境有以下库,可按先后顺序下载:
以下命令可以在cmd中编写,进行下载库,其他方式均可。
Python 3.4 及后续版本已经默认安装了pip
(1) numpy 科学计算库 pip3 install numpy
(2) Scipy 高级科学计算库 pip3 install scipy
(3) Matplotlib 数据可视化工具 pip3 install matplotlib
(4) Pandas 做python数据分析-- 前提需要numpy 和Scipy
(5) Jupyter Notebook 交互式笔记本 pip3 install Jupyter
(6) Scikit-learn 机器学习库 需要numpy+mkl+scipy+matplotlib做依赖,请依次pip下载