在linux服务器上安装Miniconda3

发布时间:2023年12月18日

首先可以通过清华源下载

在Linux系统中,wget是一个常用的命令行工具,用于从网络上下载文件。

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py39_23.5.2-0-Linux-x86_64.sh

可能会报如下错误
ERROR: cannot verify mirrors.tuna.tsinghua.edu.cn’s certificate, issued by ‘/C=US/O=Let’s Encrypt/CN=R3’:
Issued certificate has expired.
我们需要添加如下参数–no-check-certificate

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py39_23.5.2-0-Linux-x86_64.sh --no-check-certificate

运行该脚本

bash Miniconda3-py39_23.5.2-0-Linux-x86_64.sh

一路yse和enter

安装完执行

source ~/.bashrc

到此miniconda已经安装完成,不需要再配置相关的环境变量了

换源的一些指令

可能不同的服务器网络环境不同,可以尝试不同的国内镜像,这里切换到了阿里云的源,试过清华的源,中科大的源,但都不太行,一直卡在Solving environment上

查看源

conda config --show-sources

conda换源

conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/main
 
conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/r
 
conda config --add channels http://mirrors.aliyun.com/anaconda/pkgs/msys2
 
conda config --set show_channel_urls yes

通过运行 conda config --set show_channel_urls yes,您启用了显示软件包通道 URL 的功能。这意味着当您运行 conda install 或其他 conda 命令时,您将看到软件包来自哪个通道的信息。

conda初始化源

这将会删除所有的通道

conda config --remove-key channels

pip换源

查看源

pip config list 
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
文章来源:https://blog.csdn.net/qq_45862085/article/details/134949206
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。