安装anaconda并配置环境

安装anaconda的步骤
1、确定系统信息
uname -a

2、下载对应版本

3、sh 安装shell脚本

4、添加到对应路径

5、安装完anaconda之后,创建虚拟环境

conda create -n py36 python=3.6

6、从别的环境中拷贝下来&在本地进行pip安装:

pip freeze > requirements.txt
pip install -r requirements.txt
原文地址:https://www.cnblogs.com/everfight/p/anaconda.html