安装Conda
在Conda的官网下载Conda,在Mac环境下最好直接安装完整版的Conda,防止后面有缺少的包。
在下载好了Conda之后,我们可以配置一下下载服务器的镜像地址,加快下载速度。
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
配置Python
在命令行中输入以下代码可以下载并配置Python的运行环境。
conda create –n python36 python=3.6
载入Python环境的代码如下。
source activate python36
运行Python。
python
关闭Python。
quit()
退出Python运行环境。
source deactivate
安装科学计算所需的Python工具包
使用Conda进行安装。
conda install scipy
conda install pandas
使用pip进行安装。
pip install scikit-learn