Pycharm错误:加载包列表时出错:状态:404

2024-06-17 13:15:57 发布

您现在位置:Python中文网/ 问答频道 /正文

我想安装tensorflow软件包,但是当我添加url时:
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py2-none-any.whl/
管理存储库中的链接。
但是在可用的包中没有任何内容可以显示,并且存在错误

(Reload List of Packages): Error updating package list: Status:404 as shown the image.

有人能帮我解决这个问题吗?在

enter image description here


Tags: httpscomnoneurl内容链接mactensorflow
1条回答
网友
1楼 · 发布于 2024-06-17 13:15:57

看来你弄错了。请尝试以下URL(无尾随斜杠):https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py2-none-any.whl

如果错误仍然存在(看起来像PyCharm错误),请从命令行执行以下操作:

$ pip3 install  upgrade \
 https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py2-none-any.whl

相关问题 更多 >