码迷,mamicode.com
首页 > 其他好文 > 详细

centeos安装Anconda3

时间:2019-08-16 10:24:20      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:get   this   arc   pat   pack   roo   bash   play   comm   

  步骤:

#获取安装包
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.2.0-Linux-x86_64.sh

# 安装bzip2
yum install -y bzip2

bash Anaconda3-5.2.0-Linux-x86_64.sh
#一路回车,哟啊注意选择是否


#配置环境变量
#运行vim ~/.bashrc,在文件最后加上(现在应该会帮你加上,如果这个文件有了就不需要加了)
export  PATH="/root/anaconda3/bin:$PATH" 

#安装好以后,输入命令,使环境变量生效 :source ~/.bashrc,然后重启终端

#验证
#输入conda
[root@instance-hrnebyqu ~]# conda
usage: conda [-h] [-V] command ...

conda is a tool for managing and deploying applications, environments and packages.

Options:

positional arguments:
  command
    clean        Remove unused packages and caches.
    config       Modify configuration values in .condarc. This is modeled
                 after the git config command. Writes to the user .condarc
                 file (/root/.condarc) by default.
    create       Create a new conda environment from a list of specified
                 packages.
    help         Displays a list of available conda commands and their help
                 strings.

  常规使用:

# 创建一个名为py3,版本为python3.6得虚拟环境
conda create --name py3 python=3.6

# 列出所有得虚拟环境
conda env list

#激活py3这个虚拟环境
source activate py3

#取消激活
source deactivate

 

centeos安装Anconda3

标签:get   this   arc   pat   pack   roo   bash   play   comm   

原文地址:https://www.cnblogs.com/tjp40922/p/11362241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!