欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

anaconda快速切换python环境

程序员文章站 2022-04-18 21:54:26
...

conda常用命令

# cmd查看
conda info -e

# 创建环境
conda create -n python38 python=3.8

# 删除环境
conda remove -n python38 --all
# 进入环境
activate python38
# 退出环境,关掉窗口也能自动退出
deactivate python38

# 管理python包
conda list
# 在python环境里安装包
conda install -n python38 xx

# 更新conda,慎重!新版本可能跟操作系统不兼容
conda update conda

win10安装

官网下载傻瓜式安装,最后勾选添加到环境变量

centos安装

# 下载
wget  https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2019.03-Linux-x86_64.sh

# 安装,一路yes
sh Anaconda3-2019.03-Linux-x86_64.sh

# 最后一步问是否添加到环境变量一定要打个yes,不能直接回车。。。不然就看下一步手动添加环境变量
Python 3.6.0 :: Continuum Analytics, Inc.
creating default environment...
installation finished.
Do you wish the installer to prepend the Anaconda3 install location
to PATH in your /home/hanbairu/.bashrc ? [yes|no]
[no] >>> yes

Prepending PATH=/home/hanbairu/anaconda3/bin to PATH in /home/hanbairu/.bashrc
A backup will be made to: /home/hanbairu/.bashrc-anaconda3.bak


For this change to become active, you have to open a new terminal.

Thank you for installing Anaconda3!



根据安装提示,环境变量已经写好
# 应用环境变量
source ~/.bashrc

# 查看conda版本
conda -V

# 手动添加环境变量
vi /etc/profile
在文件末尾加上如下两行代码

PATH=$PATH:/root/anaconda3/bin  #路径名跟自己实际情况而定
export PATH

应用环境变量
source /etc/profile

安装问题小记

新版本安装不上

https://repo.anaconda.com/archive/Anaconda2-2019.10-Linux-x86_64.sh
倒也没报错,就是解压时进度条一直卡着不动,网上查了一下,很多人也遇到新版本安装出错的问题,重新下一个旧版本

[/root/anaconda2] >>> 
PREFIX=/root/anaconda2
Unpacking payload ...

清华镜像

https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

某版本没有python38环境

https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-4.3.0-Linux-x86_64.sh
这个版本不能虚拟出python38环境