Ubuntu 安装 Anaconda 【conda】换源并配置 Python 环境
# 1. Anaconda下载安装
# 1.1 下载
去conda (opens new window)官网或者清华镜像 (opens new window)查找较新版本的conda(国内建议清华源),不用最新是因为可能因为太新而出现各种奇怪的问题,然后复制下载链接,连接服务器后使用wget下载。
# 进入下载目录,用于存放conda安装包
cd Downloads
# 下载至服务器
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2024.06-1-Linux-x86_64.sh
1
2
3
4
2
3
4
若下载时出现 bug:
HTTP request sent, awaiting response... 403 Forbidden bash lk2@lthpc:~/Downloads$ wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2024.06-1-Linux-x86_64.sh --2024-11-07 12:14:56-- https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2024.06-1-Linux-x86_64.sh Resolving mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)... 2402:f000:1:400::2, 101.6.15.130 Connecting to mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)|2402:f000:1:400::2|:443... connected. HTTP request sent, awaiting response... 403 Forbidden 2024-11-07 12:14:56 ERROR 403: Forbidden.
1
解决方法:用 wget --user-agent=“Mozilla” + 要下载的链接
wget --user-agent="Mozilla" https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2024.06-1-Linux-x86_64.sh
1
# 1.2 安装
chmod u+x Anaconda3-2024.06-1-Linux-x86_64.sh
./Anaconda3-2024.06-1-Linux-x86_64.sh
1
2
2
接下来是协议内容,一直按空格到底部,然后输入yes —> 回车
# 1.3 验证
重开一个界面,看见左侧出现(base)
标志,则成功安装。
若无,则需手动添加系统环境变量
vim ~/.bashrc
1
最后加入:
export PATH="/root/anaconda3/bin:$PATH"
1
重新加载 .bashrc
文件
source ~/.bashrc
1
conda init
1
# 2. conda换源
# 2.1 换源为清华源
config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
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/pytorch/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
1
2
3
4
5
6
2
3
4
5
6
# 2.2 查看源
conda config --show-sources
1
如果要恢复默认源,则使用下述命令,一般用不太到
conda config --remove-key channels
1
# 3. pip 换源
一般选用清华源即可,若感觉清华源很慢,则选用备用的中科大源
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 中科大源
pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
1
2
3
4
2
3
4
# 案例
创建一个 python@3.11 环境
conda create -n env python=3.11
# To activate this environment, use
conda activate env
# To deactivate an active environment, use
conda deactivate
1
2
3
4
5
6
7
2
3
4
5
6
7
- 01
- linux 安装 ollama 基本步骤11-27
- 02
- Linux(Ubuntu)安装 open-webui 最新方式汇总11-27
- 03
- Ubuntu 上安装 【docker】 的详细指南11-27