$ 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,没有任何问题。
幕布斯7119047
浏览 1359回答 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的哪个位版本。