Post-question update:
问题后更新:
See Introduction to Conda for more details.
有关详细信息,请参阅Conda简介。
The problem:
问题:
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:
我第一次在〜/ anaconda上安装了我的ubuntu上的Anaconda,当我试图更新我的anaconda时,根据Continuum Analytics的文档,我应该使用以下命令:
conda update conda
conda update anaconda
Then I realized that I did not have conda installed, so I installed it using the documentation from here.
然后我意识到我没有安装conda,所以我使用这里的文档安装它。
After conda is installed, when I run conda update anaconda
, I got the following error:
安装conda后,当我运行conda update anaconda时,我收到以下错误:
Error: package 'anaconda' is not installed in /home/xiang/miniconda
错误:/ home / xiang / miniconda中未安装包'anaconda'
It appears conda is assuming my anaconda is installed under /home/xiang/miniconda
which is NOT true.
似乎conda假设我的anaconda安装在/ home / xiang / miniconda下,这不是真的。
The questions:
问题:
- What is the differences between conda and anaconda?
- conda和anaconda有什么区别?
- How can I tell conda where my anaconda is installed?
- 我怎么能告诉conda我的蟒蛇安装在哪里?
1 个解决方案
#1
123
conda is the package manager. Anaconda is a set of about a hundred packages including conda, numpy, scipy, ipython notebook, and so on.
conda是包管理器。 Anaconda是一套约一百个包,包括conda,numpy,scipy,ipython notebook等。
You installed Miniconda, which is a smaller alternative to Anaconda that is just conda and its dependencies (as opposed to Anaconda, which is conda and a bunch of other packages like numpy, scipy, ipython notebook, etc.). Once you have Miniconda, you can easily install Anaconda into it with conda install anaconda
.
你安装了Miniconda,它是Anaconda的一个小型替代品,它只是conda及其依赖项(而不是Anaconda,它是conda和其他一些软件包,如numpy,scipy,ipython notebook等)。一旦你拥有Miniconda,你可以使用conda install anaconda轻松安装Anaconda。
#1
123
conda is the package manager. Anaconda is a set of about a hundred packages including conda, numpy, scipy, ipython notebook, and so on.
conda是包管理器。 Anaconda是一套约一百个包,包括conda,numpy,scipy,ipython notebook等。
You installed Miniconda, which is a smaller alternative to Anaconda that is just conda and its dependencies (as opposed to Anaconda, which is conda and a bunch of other packages like numpy, scipy, ipython notebook, etc.). Once you have Miniconda, you can easily install Anaconda into it with conda install anaconda
.
你安装了Miniconda,它是Anaconda的一个小型替代品,它只是conda及其依赖项(而不是Anaconda,它是conda和其他一些软件包,如numpy,scipy,ipython notebook等)。一旦你拥有Miniconda,你可以使用conda install anaconda轻松安装Anaconda。