安装Anaconda
-
如果出现"Can't connect to HTTPS URL because the SSL module is not available." 问题,可以参考 https://blog.csdn.net/weixin_37766087/article/details/100746309 。在安装的时候 选择all user并添加上环境变量
-
或者下载openssl https://slproweb.com/products/Win32OpenSSL.html
-
设置 自动进入base虚拟环境 conda config --set auto_activate_base true
下载加速(添加镜像)
conda config -–add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config -–set show_channel_urls yes
升级conda
- conda update conda
升级系统的python
- conda install python=3.6
使用镜像
- conda create -n py34 python=3.4 anaconda
source activate py34