一、下載https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Windows-x86_64.exe並安裝到目錄D:\Miniconda3python
二、將 D:\Miniconda3與D:\Miniconda3\Scripts加入pathurl
三、設置倉庫鏡像:ip
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yesrem
四、能夠添加一些第三方源,如:test
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/tensorflow
五、更新 conda update python配置
六、安裝與卸載 conda install/uninstall tensorflowdate
七、查看已安裝包 conda list下載
八、查看conda配置信息 conda infochannel
九、配置一個新的2.7環境(放在envs目錄下): conda add -n py27 python=2.7
激活:activate py27
退出虛擬環境:deactivate
十、刪除2.7環境:conda remove -n py27 --all
十一、其它conda clean/search/help/run/bundle/package