无法在anaconda中创建环境

问题描述 投票:0回答:2

我正在尝试在conda中创建一个新环境,但是由于以下错误而不断失败,有关如何解决此问题的任何建议?谢谢!我正在使用:conda create -name deeplearning

Collecting package metadata (current_repodata.json): done
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

  - deeplearning

Current channels:

  - https://repo.anaconda.com/pkgs/main/osx-64
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/osx-64
  - https://repo.anaconda.com/pkgs/r/noarch

To search for alternate channels that may provide the conda package you're
looking for, navigate to

    https://anaconda.org

and use the search bar at the top of the page.
python anaconda environment
2个回答
0
投票

conda create --name deeplearning


0
投票

如果输入-name deeplearning,conda会认为您要安装库“ deeplearning”,这就是为什么您看到此错误的原因。您可以输入-n或--name作为正确的命令。 -n是--name的快捷方式。

conda create --name deeplearning
© www.soinside.com 2019 - 2024. All rights reserved.