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

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

Conda3 + Python3.7shell

  1. 清華源下載Conda安裝腳本;
  2. 修改激活腳本,避免污染Python路徑;
  3. 修改Conda的下載源;

安裝Conda

下載安裝腳本:Anaconda3-2019.03-Linux-x86_64.shubuntu

mirrors.tuna.tsinghua.edu.cn/anaconda/ar…bash

參考 清華conda源服務器

版本信息:ui

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
複製代碼

執行安裝腳本:this

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

參數:url

  1. 是否贊成協議; -> yes
  2. 安裝位置; -> 自定義位置,新建文件夾
  3. 是否啓動初始化; -> yes

添加激活腳本

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

# >>> 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,激活和解除激活:code

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
複製代碼

使用壓縮包安裝

例如:cudatoolkit==8.0-3

下載安裝包:

anaconda.org/anaconda/cu…

CUDA

先下載至本地,再上傳至服務器。

Conda安裝:

conda install cudatoolkit-8.0-3.tar.bz2
複製代碼

經常使用命令

conda env list  # conda環境列表
conda activate ml_conda  # 激活環境
複製代碼

OK, that's all!

相關文章
相關標籤/搜索