Anaconda环境配置相关问题1

前言:

记录笔者anaconda环境配置问题


一、学习内容:

常见问题汇总

  1. 查看已有的环境配置
  2. 进入不同环境的方法
  3. 如何创建一个新的环境
  4. 删除已有的环境配置

二、解决方法:

对应方法

  1. 查看已有的环境配置:conda info --env在这里插入图片描述

  2. 进入不同环境的方法:conda activate 环境名字在这里插入图片描述

  3. 如何创建一个新的环境:conda create --name python35 python=3.5(创建一个名为python35的python3.5的环境)在这里插入图片描述在这里插入图片描述

  4. 删除已有的环境配置:conda remove -n python35 --all在这里插入图片描述


猜你喜欢

转载自blog.csdn.net/qq_45825952/article/details/123905408