Python内置标准库中虚拟环境配置

1.  创建一个文件夹用于存放你的虚拟环境
2.  cd 到存放虚拟环境的地址
3. 创建虚拟环境:python3 -m venv bash(虚拟环境的名字)
4. 激活虚拟环境 `source bash/bin/activate`
5. 退出:`deactivate

conda虚拟环境配置

miniconda下载地址

conda config --add channels http://mirrors.ustc.edu.cn/anaconda/pkgs/free/ 
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/ 
conda config --add channels http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 
conda config --set show_channel_urls yes
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

镜像地址

# 添加镜像地址
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple
# 查看
conda config --show-sources
# 删除
conda config --remove channels https://pypi.tuna.tsinghua.edu.cn/simple

1、创建一个虚拟环境

conda create -n 环境名

# 指定Python的版本号
conda create -n 环境名 python=版本号

2、列出所有虚拟环境

conda env list 
#或者 
conda info -e

3、进入某个虚拟环境

conda activate 虚拟环境名

4、退出某个虚拟环境

conda deactivate 虚拟环境名

5、删除某个虚拟环境(当然是在base中才能进行)

conda remove -n 虚拟环境名--all

6、重命名某个虚拟环境(base不能重命名,当前所在的虚拟环境不能重命名)

conda rename -n 现在的名称 新的名称
最后修改:2024 年 11 月 22 日
如果觉得我的文章对你有用,请随意赞赏