牆內搭建高效的Conda開發環境

SpikeKing發表於2019-05-09

配置環境:Ubuntu伺服器,版本號 16.04.4,Python 3.7.3。

Conda3 + Python3.7

  1. 清華源下載Conda安裝指令碼;
  2. 修改啟用指令碼,避免汙染Python路徑;
  3. 修改Conda的下載源;

安裝Conda

下載安裝指令碼:Anaconda3-2019.03-Linux-x86_64.sh

參考 清華conda源

版本資訊:

cat /proc/version
Linux version 4.4.0-87-generic (buildd@lcy01-31) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) ) #110-Ubuntu SMP Tue Jul 18 12:55:35 UTC 2017

python3.7 --version
Python 3.7.3
複製程式碼

執行安裝指令碼:

sudo bash Anaconda3-2019.03-Linux-x86_64.sh
複製程式碼

引數:

  1. 是否同意協議; -> yes
  2. 安裝位置; -> 自定義位置,新建資料夾
  3. 是否啟動初始化; -> yes

新增啟用指令碼

避免每次開機啟動,移動.bashrc中的啟動命令:

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/data1/wcl/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
    eval "$__conda_setup"
else
    if [ -f "/data1/wcl/anaconda3/etc/profile.d/conda.sh" ]; then
        . "/data1/wcl/anaconda3/etc/profile.d/conda.sh"
    else
        export PATH="/data1/wcl/anaconda3/bin:$PATH"
    fi
fi
unset __conda_setup
# <<< conda initialize <<<
複製程式碼

新建啟用指令碼activate_conda.sh,啟用和解除啟用:

source activate_conda.sh
conda deactivate
複製程式碼

修改Conda源

修改conda的安裝源:

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 --set show_channel_urls yes
複製程式碼

配置檔案.condarc

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - defaults
show_channel_urls: true
複製程式碼

OK, that's all!

相關文章