博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Anaconda 管理python环境
阅读量:4211 次
发布时间:2019-05-26

本文共 204 字,大约阅读时间需要 1 分钟。

1.升级conda 环境

conda update conda

2 . 安装conda 参考

3 .列出conda下面的环境

conda info --envs

其中前面带* 号,表示正在使用的环境

4 .复制一个环境

conda create --name python36Copy --clone python36

5 .删除一个环境

conda remove --name python36 --all

转载地址:http://eggli.baihongyu.com/

你可能感兴趣的文章
【一天一道LeetCode】#56. Merge Intervals
查看>>
【一天一道LeetCode】#57. Insert Interval
查看>>
【一天一道LeetCode】#58. Length of Last Word
查看>>
【一天一道LeetCode】#59. Spiral Matrix II
查看>>
【一天一道LeetCode】#30. Substring with Concatenation of All Words
查看>>
【一天一道LeetCode】#60. Permutation Sequence.
查看>>
【一天一道LeetCode】#113. Path Sum II
查看>>
【一天一道LeetCode】#114. Flatten Binary Tree to Linked List
查看>>
【unix网络编程第三版】阅读笔记(二):套接字编程简介
查看>>
【一天一道LeetCode】#115. Distinct Subsequences
查看>>
【一天一道LeetCode】#116. Populating Next Right Pointers in Each Node
查看>>
【一天一道LeetCode】#117. Populating Next Right Pointers in Each Node II
查看>>
【一天一道LeetCode】#118. Pascal's Triangle
查看>>
【一天一道LeetCode】#119. Pascal's Triangle II
查看>>
【unix网络编程第三版】阅读笔记(三):基本套接字编程
查看>>
同步与异步的区别
查看>>
IT行业--简历模板及就业秘籍
查看>>
JNI简介及实例
查看>>
JAVA实现文件树
查看>>
linux -8 Linux磁盘与文件系统的管理
查看>>