使用PIP找不到TensorFlow

使用PIP找不到TensorFlow

我试着用PIP来阻止TensorFlow:

$ pip install tensorflow --user
Collecting tensorflow
Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow

我做错什么了?到目前为止,我使用了Python和PIP,没有任何问题。


www说
浏览 1808回答 3
3回答

蝴蝶刀刀

您需要64位版本的Python,在您的示例中使用的是32位版本。到目前为止,TensorFlow只支持64-bit versions of Python 3.5.x and 3.6.x在窗户上。若要检查正在运行的Python版本,请键入python或python3启动解释器,然后键入import struct;print(struct.calcsize("P") * 8)而这两种方法都会打印出来32或64告诉您正在运行的Python的哪个位版本。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python