Conda笔记
Part 0 前言
Conda是一个强大的管理版本和Python环境的工具,在本机与服务器等场景都有重要应用。这里记录使用过程中的心得和笔记。
Part 1 相关资源
- Conda使用指南
Part 2 安装
- Ubuntu 安装 conda
Part 3 常用操作
查看已有 conda 环境
激活 conda 环境
更新 anaconda
查看源
1
| conda config --show-sources
|
更换源为 TUNA
1 2 3
| 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 环境
1
| conda create --name yourname python=3.8
|
创建一个名为yourname
的环境,指定其python版本为3.8
删除 conda 环境
1
| conda env remove --name your_env_name
|
删除名为your_env_name
的虚拟环境
取消开机自动激活 conda base 环境
1
| conda config --set auto_activate_base false
|
This is copyright.