speech recognition for anaconda installation

风格不统一 提交于 2020-03-17 02:59:22

问题


I am currently trying to install speech recognition for anaconda but I am getting error

(base) C:>conda install -c conda - forge/label/cf201901 Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve.

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

  - -
  - forge/label/cf201901

Current channels:

  - https://conda.anaconda.org/conda/win-32
  - https://conda.anaconda.org/conda/noarch
  - https://repo.anaconda.com/pkgs/main/win-32
  - https://repo.anaconda.com/pkgs/main/noarch
  - https://repo.anaconda.com/pkgs/r/win-32
  - https://repo.anaconda.com/pkgs/r/noarch
  - https://repo.anaconda.com/pkgs/msys2/win-32
  - https://repo.anaconda.com/pkgs/msys2/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.

回答1:


try to install using Anaconda Navigator: go to Anaconda Navigator, Environments, (select your environment), click on the dropdown with 'Installed', and change to 'Uninstalled', search the package you need, check the box beside the name of the package and finally click on 'Apply'.




回答2:


Your command makes no sense. forge/label/cf201901 is a channel name.

If you wanna install a pkg from specific channel, like forge/label/cf201901. Try following command

conda install --channel "conda-forge/label/cf201901" package


来源:https://stackoverflow.com/questions/58001748/speech-recognition-for-anaconda-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!