英文:
Why can't install tensorflow version below 2.12?
问题
我想使用TensorFlow - GPU,但我遇到了一些问题。
错误:无法找到满足要求tensorflow==2.10的版本(可用版本:2.12.0rc0、2.12.0rc1、2.12.0、2.13.0rc0、2.13.0rc1)
错误:找不到与tensorflow==2.10匹配的分发版本。
我尝试安装tensorflow==2.10,但我收到了这些错误。
英文:
i want to use tensorflow - gpu, but i'm having some issues.
ERROR: Could not find a version that satisfies the requirement tensorflow==2.10 (from versions: 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.13.0rc0, 2.13.0rc1)
ERROR: No matching distribution found for tensorflow==2.10
I tried to install tensorflow==2.10, but i'm recieving these errors
答案1
得分: 1
请检查这些已测试的构建配置,以安装与哪个Python版本兼容的特定TensorFlow版本。
如果您想在Windows操作系统上安装支持GPU的TensorFlow,请确保安装tensorflow 2.10或以下版本
,它与Python 3.7到3.10
兼容,因为Tensorflow 2.11不支持Windows上的CUDA构建。
您可以参考此链接按照所有硬件/软件要求和逐步说明安装支持GPU的TensorFlow。
英文:
Please check this tested build configurations to install the specific tensorflow version compatible to which python version.
If you want to install tensorflow with GPU support in Win OS, please be sure to install tensorflow 2.10 or below version
which is compatible with python 3.7 to 3.10
because CUDA build is not supported for Windows in Tensorflow 2.11.
You can refer to this link to install tensorflow with GPU by following all the Hardware/Software requirements and mentioned step by step instructions.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论