美文网首页
Anaconda的基本使用

Anaconda的基本使用

作者: funOfFan | 来源:发表于2020-09-18 14:58 被阅读0次
  1. 创建新环境: conda create -n xxx(环境名) python=3(选择新建环境的python版本)
  2. 激活新建环境conda activate xxx(环境名)
  3. 退出当前已激活的环境conda deactivate
  4. 删除指定环境以及其中包含的所有python库conda remove -n xxx(环境名) --all
  5. 查看当前有哪些环境conda info -e
  6. 查看当前环境中,安装了哪些包conda list
  7. 向当前环境中安装包conda install xxx(包名)

相关文章

网友评论

      本文标题:Anaconda的基本使用

      本文链接:https://www.haomeiwen.com/subject/uzrjyktx.html