What are the differences between Conda and Anaconda?(Conda 和 Anaconda 有什么区别?)
问题描述
问题后更新:
有关详细信息,请参阅 Conda 简介.
See Introduction to Conda for more details.
问题:
当我尝试更新我的 anaconda 时,根据 文档,我应该使用以下命令:
I first installed Anaconda on my ubuntu at ~/anaconda, when I was trying to update my anaconda, according to the documentation from Continuum Analytics, I should use the following commands:
conda update conda
conda update anaconda
然后我意识到我没有安装 conda,所以我使用 这里.
Then I realized that I did not have conda installed, so I installed it using the documentation from here.
conda安装后,运行conda update anaconda,报如下错误:
After conda is installed, when I run conda update anaconda, I got the following error:
错误:包 'anaconda' 没有安装在/home/xiang/miniconda 中
Error: package 'anaconda' is not installed in /home/xiang/miniconda
看来 conda 假设我的 anaconda 安装在 /home/xiang/miniconda 下,这是 NOT true.
It appears conda is assuming my anaconda is installed under /home/xiang/miniconda which is NOT true.
问题:
- conda和anaconda有什么区别?
- 我如何告诉 conda 我的 anaconda 安装在哪里?
- What are the differences between conda and anaconda?
- How can I tell conda where my anaconda is installed?
推荐答案
conda 是包管理器.Anaconda 是一组大约一百个包,包括 conda、numpy、scipy、ipython notebook 等.
conda is the package manager. Anaconda is a set of about a hundred packages including conda, numpy, scipy, ipython notebook, and so on.
您安装了 Miniconda,它是 Anaconda 的一个较小的替代品,它只是 conda 及其依赖项,而不是上面列出的那些.
You installed Miniconda, which is a smaller alternative to Anaconda that is just conda and its dependencies, not those listed above.
拥有 Miniconda 后,您可以使用 conda install anaconda 轻松将 Anaconda 安装到其中.
Once you have Miniconda, you can easily install Anaconda into it with conda install anaconda.
这篇关于Conda 和 Anaconda 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Conda 和 Anaconda 有什么区别?
基础教程推荐
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 求两个直方图的卷积 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 包装空间模型 2022-01-01
