不知道17+2大以后清华的镜像能不能继续用,反正我的conda配置就这样了,侧重于气象数据分析:
# 添加Anaconda的TUNA镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes
############# nightly ################
#https://anaconda.org/uvcdat/uvcdat
conda create -n uvcdat-2.10 -c conda-forge -c uvcdat/label/v2.10 uvcdat
source activate uvcdat-2.10
conda install -c scitools iris iris_sample_data cartopy
pip install eofs
conda install -c conda-forge jupyter_contrib_nbextensions
git clone git://github.com/minrk/nbextension-scratchpad
jupyter nbextension install nbextension-scratchpad --user
pip install jupyterthemes
jt -t monokai -T -fs 10 -nfs 9 -tfs 11
git clone https://github.com/hhuangmeso/nclcmaps.git
cd nclcmaps
python setup.py install
git clone https://github.com/mvds314/factor_rotation
cd factor_rotation
python setup.py install
############# ncl_stable ################
conda create -n ncl_stable
conda install -c conda-forge ncl=6.4.0 cdo nco
############# play around ################
conda create -n play --clone root
source activate play
conda install anaconda
conda install -c conda-forge emacs tmux
############# tensorflow ################
conda create -n torch python=2.7
source activate torch
conda install -c conda-forge tensorflow
conda install pytorch torchvision -c soumith