0

我刚刚在 Windows 10 上安装了mambaforge,我还没有按照mamba docs中的建议安装 Anaconda 。我想要实现的是安装与从 scracth 安装 Anaconda 时获得的相同的软件包。

有没有办法检索Anaconda中安装的软件包列表并使用mamba安装它们?或者我必须在安装 Mamba 之前安装 Anaconda 吗?我的目标是拥有一个用于测试目的的基本 Anaconda 环境。

我试过:mamba create -n fullanaconda anaconda但我得到:“没有提供来自曼巴的请求的蟒蛇”。(来源

感觉就像我错过了一些重要的东西,任何帮助将不胜感激。

mamba info返回:

    active environment : base
    active env location : C:\Users\uuu\AppData\Local\mambaforge
            shell level : 1
       user config file : C:\Users\uuu\.condarc
 populated config files : C:\Users\uuu\AppData\Local\mambaforge\.condarc
          conda version : 4.10.3
    conda-build version : not installed
         python version : 3.9.7.final.0
       virtual packages : __win=0=0
                          __archspec=1=x86_64
       base environment : C:\Users\uuu\AppData\Local\mambaforge  (writable)
      conda av data dir : C:\Users\uuu\AppData\Local\mambaforge\etc\conda
  conda av metadata url : None
           channel URLs : https://conda.anaconda.org/conda-forge/win-64
                          https://conda.anaconda.org/conda-forge/noarch
          package cache : C:\Users\uuu\AppData\Local\mambaforge\pkgs
                          C:\Users\uuu\.conda\pkgs
                          C:\Users\uuu\AppData\Local\conda\conda\pkgs
       envs directories : C:\Users\uuu\AppData\Local\mambaforge\envs
                          C:\Users\uuu\.conda\envs
                          C:\Users\uuu\AppData\Local\conda\conda\envs
               platform : win-64
             user-agent : conda/4.10.3 requests/2.26.0 CPython/3.9.7 Windows/10 Windows/10.0.18363
          administrator : False
             netrc file : None
           offline mode : False
4

2 回答 2

2

anaconda包只能从anaconda频道获得,所以它应该与

mamba create -n fullanaconda -c anaconda anaconda
于 2021-10-21T13:44:38.010 回答
1

在我的情况下,我还需要指定 Python 版本,否则我以默认 (2.7) 结束,所以我添加了:

mamba create -n fullanaconda -c anaconda anaconda python=3.8

于 2021-10-21T19:03:13.767 回答