miniconda使用清华源下载
时间: 2024-01-18 11:18:07 浏览: 130
repo下载更新清华源使用.txt
5星 · 资源好评率100%
你可以按照以下步骤使用清华源下载Miniconda:
1. 首先,使用wget命令下载Miniconda的安装脚本。在终端中运行以下命令:
```shell
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
```
2. 下载完成后,运行以下命令来安装Miniconda。请注意,你需要将命令中的`<your_installation_path>`替换为你想要安装Miniconda的路径。
```shell
bash Miniconda3-latest-Linux-x86_64.sh -b -p <your_installation_path>
```
3. 安装过程中会提示你是否接受许可协议,按下回车键继续。
4. 安装完成后,你需要将Miniconda添加到系统的环境变量中。运行以下命令:
```shell
echo 'export PATH="<your_installation_path>/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
```
请确保将`<your_installation_path>`替换为你实际的Miniconda安装路径。
现在,你已经成功使用清华源下载并安装了Miniconda。
阅读全文