在linux服务器上安装Miniconda3

首先可以通过清华源下载

在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

你可能感兴趣的:(部署搭建,linux,运维,服务器,conda)