cat /etc/os-release 
2. 查看架构
uname -a # output # Linux localhost.localdomain 4.18.0-193.28.1.el8_2.x86_64 #1 SMP Thu Oct 22 00:20:22 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux 官方地址: Link

如果需要安装其他版本,可以在这里找: Link
wget -P [指定安装路径] url[url为复制的链接] wget https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Linux-x86_64.sh 参考文档: Link
bash Anaconda3-2023.09-0-Linux-x86_64.sh Enter,Do you accept the license terms? [yes|no]: yesEnter (建议安装至用户目录下)
no(如果这里选择了 yes,可直接跳至第 3 步)完成后,终端显示: Thank you for installing Anaconda3!
source ~/anaconda3/bin/activate conda init source ~/.bashrc conda config --set auto_activate_base false source ~/.bashrc conda env list 