gpt4 book ai didi

python - 使用 Pipenv 安装 TensorFlow 出现错误

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

我正在尝试使用 pipenv 安装 TensorFlow

这是我的 Pipfile:

[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pylint = "*"

[packages]
python-telegram-bot = "*"
imdbpy = "*"
matplotlib = "*"
scikit-image = "*"
scikit-learn = "*"
tensorflow = "*"

[requires]
python_version = "3.8"

然后我运行:

pipenv install tensorflow

哪些输出:

Installing tensorflow…
Adding tensorflow to Pipfile's [packages]…
Installation Succeeded
Pipfile.lock (989c3d) out of date, updating to (0d6760)…
Locking [dev-packages] dependencies…
Success!
Locking [packages] dependencies…
Locking Failed!

后面是一个大回溯,结尾为:

pipenv.patched.notpip._internal.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in C:\Users\lucas\AppData\Local\Temp\tmpyh639mq4build\functools32\

我的虚拟环境使用Python 3.8.0 64位

我做错了什么?

最佳答案

正如评论所指出的,Tensorflow 仅支持 python 3.7(截至 2020 年 3 月)。您可以在system requirements page中找到更多信息文档。

因此,要解决您的问题:

  1. 使用 pipenv --rm 删除虚拟环境
  2. 删除 Pipfile.lock
  3. 将 Pipfile 的最后几行更改为
    [requires]
    python_version = "3.7"
  4. 运行 pipenv install --dev 再次重新创建环境,并运行 pipenv install tensorflow 安装 Tensorflow

完成!

关于python - 使用 Pipenv 安装 TensorFlow 出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59277637/

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