我无法使用 anaconda 安装 tensorflow 和 keras
I can not install tensorflow and keras with anaconda
我刚刚安装了个人版的anaconda。之后就直接进入base(root)环境安装tensorflow和keras,因为项目需要,可惜安装不了
通过 anaconda navigator 应用程序手动尝试安装 tensorflow,我收到以下错误
UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
- tensorflow -> python[version='3.5.*|3.6.*|3.7.*']
Your python: python=3.8
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
The following specifications were found to be incompatible with your CUDA driver:
- feature:/win-64::__cuda==11.0=0
- feature:|@/win-64::__cuda==11.0=0
Your installed CUDA driver is: 11.0
我在尝试安装 keras 时遇到了类似的错误。从解释中我了解到 python 3.8 不支持这些包?在这种情况下,我该怎么办?我需要能够使用这些库。
如有任何帮助,我们将不胜感激。提前致谢!
我遇到了类似的问题。不得不回到 python 3.7。还有消息
Your installed CUDA driver is: 11.0
我相信不是在引用您的 CUDA 版本,而是您的 GPU 卡的驱动程序。查看已安装的模块并确保您使用的是 CUDA 10.1 和 cuDNN 7.6.5。文档在这里。至于 GPU 驱动程序,我不得不去 Nvidia 网站并找到一个与 CUDA 10.1 兼容的旧驱动程序。您可能认为 Tensorflow 人员现在会提供此建议。
我刚刚安装了个人版的anaconda。之后就直接进入base(root)环境安装tensorflow和keras,因为项目需要,可惜安装不了
通过 anaconda navigator 应用程序手动尝试安装 tensorflow,我收到以下错误
UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment: Specifications: - tensorflow -> python[version='3.5.*|3.6.*|3.7.*'] Your python: python=3.8 If python is on the left-most side of the chain, that's the version you've asked for. When python appears to the right, that indicates that the thing on the left is somehow not available for the python version you are constrained to. Note that conda will not change your python version to a different minor version unless you explicitly specify that. The following specifications were found to be incompatible with your CUDA driver: - feature:/win-64::__cuda==11.0=0 - feature:|@/win-64::__cuda==11.0=0 Your installed CUDA driver is: 11.0
我在尝试安装 keras 时遇到了类似的错误。从解释中我了解到 python 3.8 不支持这些包?在这种情况下,我该怎么办?我需要能够使用这些库。
如有任何帮助,我们将不胜感激。提前致谢!
我遇到了类似的问题。不得不回到 python 3.7。还有消息
Your installed CUDA driver is: 11.0
我相信不是在引用您的 CUDA 版本,而是您的 GPU 卡的驱动程序。查看已安装的模块并确保您使用的是 CUDA 10.1 和 cuDNN 7.6.5。文档在这里。至于 GPU 驱动程序,我不得不去 Nvidia 网站并找到一个与 CUDA 10.1 兼容的旧驱动程序。您可能认为 Tensorflow 人员现在会提供此建议。