This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
anaconda [2021/08/25 22:28] jordan |
anaconda [2023/03/08 16:09] (current) xujianglong ↷ Page moved from 内部资料:anaconda to anaconda |
||
---|---|---|---|
Line 61: | Line 61: | ||
细心的你一定会发现,py2 环境中不仅安装了 pandas,还安装了 numpy 等一系列 packages,这就是使用 conda 的方便之处,它会自动为你安装相应的依赖包,而不需要你一个个手动安装。 | 细心的你一定会发现,py2 环境中不仅安装了 pandas,还安装了 numpy 等一系列 packages,这就是使用 conda 的方便之处,它会自动为你安装相应的依赖包,而不需要你一个个手动安装。 | ||
- | 8、进入虚拟环境 | + | {{http:// |
+ | 8、进入虚拟环境 | ||
< | < | ||
+ | |||
source activate env_name | source activate env_name | ||
Line 107: | Line 109: | ||
<code bash> | <code bash> | ||
conda create -n newname --clone oldname | conda create -n newname --clone oldname | ||
+ | |||
</ | </ | ||