Conda 安装
本文最后更新于 2024年11月5日 晚上
1. Windows 安装 Anaconda
- 访问 Anaconda 产品网站 https://www.anaconda.com/products/distribution
- 下载并运行安装包
- 根据安装向导完成安装程序
2. 云服务器安装 Anaconda (以 Ubuntu 20.04 为例)
访问 Anaconda 产品网站 https://www.anaconda.com/products/distribution
复制适合的 Anaconda Installers 安装包下载链接https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
在服务器中输入以下命令下载 Anaconda Individual Edition 安装包
1
wget -P /tmp https://repo.anaconda.com/archive/Anaconda3-2022.10-Linux-x86_64.sh
校验文件完整性
在服务器中输入以下命令校验文件完整性
1
sha256sum /tmp/Anaconda3-2022.10-Linux-x86_64.sh
Anaconda 安装包哈希值列表: https://docs.anaconda.com/anaconda/install/hashes/lin-3-64/
输入以下命令运行安装脚本
1
bash /tmp/Anaconda3-2022.10-Linux-x86_64.sh
根据安装向导,完成安装操作(以全部选择 yes 为例)
运行
source ~/.bashrc
重新加载环境变量
2.1. 故障排除
https://docs.anaconda.com/anaconda/user-guide/troubleshooting/
Conda 安装
https://blog.cc01cc.cn/2023/03/11/use-conda-install/