搭建数据挖掘环境(mac安装 ipython notebook)
1.基础环境:
mac
python3.5
待安装
ipython notebook
numpy
scikit-learn(python开发的机器学习库,包含大量机器学习算法、数据集、工具和框架)
2.安装ipython notebook
pip install "ipython[notebook]"
启动notebook
在终端输入:
ipython notebook
会自动打开浏览器。
3.安装numpy
pip install numpy
4.安装scikit-learn
pip install scikit-learn