gpt4 book ai didi

python - 错误 : Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow)

转载 作者:行者123 更新时间:2023-12-02 04:22:40 25 4
gpt4 key购买 nike

我想安装 tensorflow 以使用 Keras LSTM
我安装了 Keras,并将此行导入到我的代码中。

from keras.callbacks import LambdaCallback
from keras.models import Sequential
from keras.layers import Dense, Activation
from keras.layers import LSTM
from keras.optimizers import RMSprop

错误是运行代码时:
No module named 'tensorflow'

当我写“pip install tensorflow”时出现 Cmd 错误:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow

pip 版本是 19.3 ,python 版本 3.7

最佳答案

视窗 ,您必须使用 Python 3.7.6 (64 bits)安装 tensorflow :

C:\Program Files\Python-3.7.6-x64> python.exe -m pip install --user tensorflow

不幸的是,tensorflow 不支持 32 位版本,并且会给您带来令人讨厌的错误:

Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow



几个重要的注意事项:
  • 安装 Microsoft Visual C++ Redistributable packages for x64 (2015 年、2017 年、2019 年)。
  • 如果您之前安装了适用于 x86 的 Python 3.7,请将其从系统中卸载并删除存储 x86 包的目录,以避免与将放置在那里的新 x64 包发生冲突。在我的机器中,它们存储在 C:\\Users\\karlphillip\\AppData\\Roaming\\Python\\Python37\\site-packages .
  • 最后,安装 Python 3.7.6 (x64) 并使用 python -m pip install --user --upgrade pip 升级 pip .
  • 现在,只需安装 tensorflow:python -m pip install --user tensorflow
  • 关于python - 错误 : Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58483210/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com