(seg_keras) C:\Users\86157>conda install "Keras == 2.5.0" 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: - keras==2.5.0 Current channels: - https://repo.anaconda.com/pkgs/main/win-64 - https://repo.anaconda.com/pkgs/main/noarch - https://repo.anaconda.com/pkgs/r/win-64 - https://repo.anaconda.com/pkgs/r/noarch - https://repo.anaconda.com/pkgs/msys2/win-64 - 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.
时间: 2023-06-24 10:05:52 浏览: 202
这个错误提示是因为当前的 conda channels 中没有 `keras==2.5.0` 这个版本的 Keras 包。你可以尝试添加其他的 channels,或者使用其他的安装方式。比如使用 pip 安装可以这样执行命令:`pip install keras==2.5.0`。另外,你也可以尝试安装其他版本的 Keras,或者安装 TensorFlow,它已经内置了 Keras。
相关问题
(seg_keras) C:\Users\86157> (seg_keras) C:\Users\86157>pip install spyder‑kernels==2.1.* ERROR: Invalid requirement: 'spyder‑kernels==2.1.*'
这个错误可能是因为你在命令行中输入了多余的空格。请尝试以下命令来安装 `spyder-kernels`:
```
pip install spyder-kernels==2.1.*
```
如果仍然出现错误,请确保你的 pip 版本是最新的,并且在命令中没有其他字符或空格。你也可以尝试使用管理员权限运行命令提示符窗口。
(seg_keras) C:\Users\86157>pip install keras==2.5.0 Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple ERROR: Ignored the following versions that require a different python version: 2.12.0 Requires-Python >=3.8; 2.12.0rc0 Requires-Python >=3.8; 2.12.0rc1 Requires-Python >=3.8; 2.13.1rc0 Requires-Python >=3.8 ERROR: Could not find a version that satisfies the requirement keras==2.5.0 (from versions: 0.2.0, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.0.6, 1.0.7, 1.0.8, 1.1.0, 1.1.1, 1.1.2, 1.2.0, 1.2.1, 1.2.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8, 2.0.9, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 2.1.5, 2.1.6, 2.2.0, 2.2.1, 2.2.2, 2.2.3, 2.2.4, 2.2.5, 2.3.0, 2.3.1, 2.4.0, 2.4.1, 2.4.2, 2.4.3, 2.5.0rc0, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0rc3, 2.6.0, 2.7.0rc0, 2.7.0rc2, 2.7.0, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.10.0rc0, 2.10.0rc1, 2.10.0, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0rc3, 2.11.0) ERROR: No matching distribution found for keras==2.5.0
这个错误提示说明当前的 Python 版本不符合 Keras 2.5.0 的要求。你需要先安装符合要求的 Python 版本,或者选择安装其他版本的 Keras。你可以尝试安装 Keras 2.4.3 版本,它支持 Python 3.6-3.8:
```python
pip install keras==2.4.3
```