我目前正在尝试安装anaconda的语音识别,但我收到错误
(基础) C:>conda安装-c conda - forge/label/cf201901收集包元数据(current_repodata.json):完成解算环境:初始冻结解算失败。使用灵活的解决方案重试。采集包元数据(repodata.json):完成解算环境:初始冻结解算失败。使用灵活的解决方案重试。
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.
发布于 2019-09-19 12:24:23
尝试使用Anaconda Navigator进行安装:转到Anaconda Navigator,environment,(选择您的环境),点击“已安装”的下拉列表,更改为“已卸载”,搜索所需的软件包,选中软件包名称旁边的复选框,最后单击“应用”。
发布于 2019-09-19 13:42:45
你的命令毫无意义。forge/label/cf201901
是一个频道名称。
如果你想从特定的通道安装pkg,比如forge/label/cf201901
。尝试执行以下命令
conda install --channel "conda-forge/label/cf201901" package
发布于 2021-07-13 14:38:31
运行以下命令:
conda install -c conda-forge speechrecognition
输出将为:
Downloading and Extracting Packages
conda-4.10.3 | 3.1 MB | ############################################################################################ | 100%
speechrecognition-3. | 31.8 MB | ############################################################################################ | 100%
python_abi-3.8 | 4 KB | ############################################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
https://stackoverflow.com/questions/58001748
复制相似问题