安装theano时用到,简单整理一下:
下载和安装 Miniconda:下载时不用管py版本,安装之后按照需要的py版本新建一个虚拟环境即可,Miniconda — Conda documentation
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
$ sudo bash Miniconda3-latest-Linux-x86_64.sh
# 指定安装目录
键入 /home/xxx/miniconda3
# 重新打开终端生效
close and re-open your current shell.
配置源:(也可以直接修改 ~/.condarc文件):
$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
$ conda config --add channels https://mirrors.tuna.tsing