配置環境:Ubuntu服務器,版本號 16.04.4,Python 3.7.3。python
Conda3 + Python3.7shell
下載安裝腳本:Anaconda3-2019.03-Linux-x86_64.sh
ubuntu
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
避免每次開機啓動,移動.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 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
下載安裝包:
先下載至本地,再上傳至服務器。
Conda安裝:
conda install cudatoolkit-8.0-3.tar.bz2
複製代碼
conda env list # conda環境列表
conda activate ml_conda # 激活環境
複製代碼
OK, that's all!