手把手教学 Centos 安装anaconda3 机器学习环境

依据教程Linux系统安装Anaconda3保姆级教程

Linux系统安装Anaconda3保姆级教程_zhianY的博客-CSDN博客_linux安装anaconda3

2022年5月19日 搭建机器学习环境 ,记录一下步骤

1、SSH登录服务器

手把手教学 Centos 安装anaconda3 机器学习环境_第1张图片

 切换到home目录, 下载anaconda3 

//切换到根目录
cd ..
//进入home文件夹
cd home 
//新建文件夹 soft
mkdir soft
//进入 soft 文件夹
cd soft

手把手教学 Centos 安装anaconda3 机器学习环境_第2张图片

测试有系统是否安装了 weget 命令, 如果没有查看下面的教程进行安装

linux安装weget命令,linux安装wget命令_媛源啊的博客-CSDN博客

wget无法使用_wget以不安全的方式连接_kaixin201505的博客-CSDN博客_wget无法使用

Index of /anaconda/archive/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

​//测试wget 命令
rpm -qa|grep "wget"
//安装 wget命令  centos : sudo yum -y install wget
sudo yum -y install wget
//使用清华的源下载 anaconda3
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2022.05-Linux-x86_64.sh
//如果遇到提示 以不安全的方式连接至 xxx  使用下面的命令(即,加入参数 --no-check-certificate)
 wget --no-check-certificate https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2022.05-Linux-x86_64.sh

​

下载完成后输入以下命令来进行Anaconda的安装

//安装 anaconda3   sh 运行文本指令  后面的文件名是你下载的文件名
sh Anaconda3-2022.05-Linux-x86_64.sh

手把手教学 Centos 安装anaconda3 机器学习环境_第3张图片

回车,阅读协议后输入yes 然后回车 

手把手教学 Centos 安装anaconda3 机器学习环境_第4张图片

 回车, 安装在root/anaconda3 目录下

安装完成, 提示是否加入环境变量, 输入yes


==> For changes to take effect, close and re-open your current shell. <==

If you'd prefer that conda's base environment not be activated on startup, 
   set the auto_activate_base parameter to false: 

conda config --set auto_activate_base false

Thank you for installing Anaconda3!

Working with Python and Jupyter is a breeze in DataSpell. It is an IDE
designed for exploratory data analysis and ML. Get better data insights
with DataSpell.

DataSpell for Anaconda is available at: https://www.anaconda.com/dataspell

Anaconda更换国内下载源_zhianY的博客-CSDN博客_anaconda换源下载

更换国内源, 

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge 
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --set show_channel_urls yes

annoconda 创建虚拟环境 删除虚拟环境_大数据AI笔记的博客-CSDN博客_conda 删除虚拟环境

你可能感兴趣的:(机器学习,centos,linux,运维)