conda 管理创建、删除环境

conda 环境管理

  1. 创建环境
    conda create -n env_name python=3.x
    比如:
conda create -n test python=3.7
  1. 删除环境:
    conda remove -n env_name --all
    比如:
conda remove -n test --all

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