参考自网络,仍然定义为转载文章。
1.下载安装脚本
不去Anaconda官网下载,下载速度太慢。到清华源下载最新版本的Linux版本的Anaconda包。

2.校验文件
cd ~/Downloads
sha256sum Anaconda3-5.3.1-Linux-x86_64.sh

3.安装
sudo sh Anaconda3-5.3.1-Linux-x86_64.sh
- Do you accept the license terms? [yes|no]
yes- Anaconda3 will now be installed into this location:
/xxx/anaconda3
-Press ENTER to confirm the location
-Press CTRL-C to abort the installation
-Or specify a different location below
/usr/local/anaconda3- Do you wish the installer to initialize Anaconda3
in your xxx/.bashrc ? [yes|no]
yes- Do you wish to proceed with the installation of Microsoft VSCode? [yes|no]
no
4.测试
conda list

5.修改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/pkgs/main/
conda config --set show_channel_urls yes
conda info -a # 查看conda所有配置信息

6.利用conda创建虚拟环境
conda create -p ~/xxx/pytorchenv python=3.7
source activate ~/xxx/pytorchenv #激活环境
source deactivate
7.卸载anaconda
- 到安装目录下(比如这里是
/usr/local/)下直接sudo rm -rf anaconda3 - 把
~/.bashrc中的环境去掉

本文详细介绍在Linux环境下如何从清华源下载并安装Anaconda,包括校验文件、修改conda源、创建虚拟环境及卸载过程。通过更换清华源加速conda安装与更新。
1万+

被折叠的 条评论
为什么被折叠?



