我已经安装了Python 3和pip 9.0.1。我已使用命令
安装了TensorFlowpip3 install --upgrade tensorflow
现在我尝试使用命令
导入TensorFlowimport tensorflow as tf
但是我收到的错误是没有模块名称TensorFlow。我正在使用原生pip。
你能帮忙吗?
答案 0 :(得分:0)
首先,您应该输入activate tensorflow
,然后会显示以下内容:
<tensorflow> C:\Users\My Computer>
现在键入python
,然后在Python提示符中键入以下内容:
>>> import tensorflow as tf
我希望它可能有用......