Anaconda3安装

yum -y install wget
yum install -y bzip2
cd ~

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2019.03-Linux-x86_64.sh

bash Anaconda3-2019.03-Linux-x86_64.sh
vim ~/.bashrc

添加:

PATH=/root/anaconda3/bin:$PATH
export PATH

刷新:

source ~/.bashrc

激活:

source activate/deactivate

使用:

conda activate/deactivate

你可能感兴趣的:(Anaconda3安装)