问题描述
我目前正在尝试为水蟒安装语音识别,但是出现错误
I am currently trying to install speech recognition for anaconda but I am getting error
(基本)C:> conda安装-c conda-forge/label/cf201901收集包元数据(current_repodata.json):已完成求解环境:最初的冻结求解失败.使用灵活的解决方法重试.收集包元数据(repodata.json):已完成求解环境:最初的冻结求解失败.使用灵活的求解重试.
(base) C:>conda install -c conda - forge/label/cf201901Collecting package metadata (current_repodata.json): doneSolving environment: failed with initial frozen solve. Retrying with flexible solve.Collecting package metadata (repodata.json): doneSolving 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.
推荐答案
您的命令没有任何意义. forge/label/cf201901
是频道名称.
Your command makes no sense. forge/label/cf201901
is a channel name.
如果要从特定通道(例如forge/label/cf201901
)安装pkg.尝试执行以下命令
If you wanna install a pkg from specific channel, like forge/label/cf201901
. Try following command
conda install --channel "conda-forge/label/cf201901" package
这篇关于Anaconda安装的语音识别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!