linux anaconda下载命令,使用镜像
时间: 2024-10-17 15:05:11 浏览: 22
Linux Anaconda是一个流行的开源数据科学平台,用于安装Python、R等科学计算环境和库。为了从镜像源下载Anaconda,你需要首先确定你想使用的镜像服务器,比如Anaconda官方提供的,或者是国内的阿里云、清华大学等加速镜像。
以下是通过wget命令从官方镜像源下载基本步骤:
```bash
# 官方英文版
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
# 或者选择特定版本
wget https://repo.anaconda.com/miniconda/Miniconda3-Linux-x86_64.sh
# 如果想要使用中国镜像
# 官方中文版镜像
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/<version>/Miniconda3-<version>-Linux-x86_64.sh
# 使用清华源替换<version>
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/<version>/Miniconda3-<version>-Linux-x86_64.sh
# 下载完成后,通常会推荐运行安装脚本
chmod +x Miniconda3-<version>-Linux-x86_64.sh
./Miniconda3-<version>-Linux-x86_64.sh -b -p /path/to/install/anaconda (这里/path/to/install/anaconda是你指定的安装目录)
```
阅读全文