首页 > 系统相关 >centos7 中如何安装anaconda

centos7 中如何安装anaconda

时间:2022-09-19 21:57:08浏览次数:94  
标签:profile root anaconda centos7 etc 安装包 Linux 安装

 

001、查看系统

[root@PC1 software]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)

 

002、下载anaconda安装包:

wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2021.11-Linux-x86_64.sh --no-check-certificate

 

003、使用bash解释器运行安装包

bash Anaconda3-2021.11-Linux-x86_64.sh

 

004、配置环境变量

echo "export PATH=\$PATH:/root/anaconda3/bin/" >> /etc/profile
source /etc/profile

 

005、测试

[root@PC1 software]# conda --version         ## 输出版本号
conda 4.10.3

 

参考:https://blog.csdn.net/sang_12345/article/details/125798317

 

标签:profile,root,anaconda,centos7,etc,安装包,Linux,安装
From: https://www.cnblogs.com/liujiaxin2018/p/16709219.html

相关文章