anaconda的使用教程,手把手教你(一)

1、anaconda 的作用

anaconda是一个可以便捷获取和管理包,同时对环境进行统一管理的发行版本,它包含了conda、python在内的180多个科学包及其依赖项

Anaconda利用工具/命令conda来进行package和environment的管理,并且已经包含了Python和相关的配套工具。

2、anaconda的镜像设置

2.1 打开ananconda prompt

anaconda的使用教程,手把手教你(一)_第1张图片

2.2为conda设置清华园的镜像配置

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

其中conda config --set show_channel_urls yes的意思是从channel中安装包时显示channel的url,这样就可以知道包的安装来源了。

3、环境

3.1 activate

activate命令能够进入anaconda中创建的虚拟环境中, 其中activate命令后面如果不显示的加上其他参数,则默认进入anaconda的默认虚拟环境(base)

当然如果我们直接走anaconda prompt进入则会直接进入base环境中

anaconda的使用教程,手把手教你(一)_第2张图片

3.2 创建一个自己的独立的python运行环境

3.2.1 创建一个名为“hello" 的虚拟环境并指定python的版本为3.6

conda create --name hello python=3.6

3.2.2 这里显示的是正在创建,稍等片刻
anaconda的使用教程,手把手教你(一)_第3张图片
3.2.3 安装过程的细节展示
anaconda的使用教程,手把手教你(一)_第4张图片
3.2.4 安装成功界面
anaconda的使用教程,手把手教你(一)_第5张图片
3.2.5 显示所有的虚拟环境

conda env list

anaconda的使用教程,手把手教你(一)_第6张图片
3.2.6 切换环境

activate hello

anaconda的使用教程,手把手教你(一)_第7张图片
3.2.7 退出当前环境

conda.bat deactivate

anaconda的使用教程,手把手教你(一)_第8张图片
3.2.8 删除某环境

conda remove --name hello --all

anaconda的使用教程,手把手教你(一)_第9张图片
删除成功,查看还有哪些环境
anaconda的使用教程,手把手教你(一)_第10张图片

4、conda包管理

你可能感兴趣的:(anaconda,python)