问题后更新:
有关详细信息,请参阅 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、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 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何在 conda 环境中安装 Selenium?How to install Selenium in a conda environment?(如何在 conda 环境中安装 Selenium?)
使用 Anaconda installe 在 Windows 上获取 CUDA 和 CUDNNget the CUDA and CUDNN version on windows with Anaconda installe(使用 Anaconda installe 在 Windows 上获取 CUDA 和 CUDNN 版本)
如何下载适用于 python 3.6 的 AnacondaHow can I download Anaconda for python 3.6(如何下载适用于 python 3.6 的 Anaconda)
使用两个不同的 Python 发行版Using two different Python Distributions(使用两个不同的 Python 发行版)
除了 OSX 上现有的 pyenv 安装之外,如何安装 AnaHow can I install Anaconda aside an existing pyenv installation on OSX?(除了 OSX 上现有的 pyenv 安装之外,如何安装 Anaconda?)
在 Cygwin 中为 Anaconda 永久设置 Python 路径Permanently set Python path for Anaconda within Cygwin(在 Cygwin 中为 Anaconda 永久设置 Python 路径)