我正在尝试导入tensorflow,并且我已经尝试了所有方法,并且在cmd提示符下,我成功使用PIP安装了tensorflow。
但是当我尝试在Python中导入tensorflow时,出现以下错误:
Error importing tensorflow. Unless you are using bazel,
you should not try to import tensorflow from its source directory;
please exit the tensorflow source tree, and relaunch your python
interpreter
from there.
我已经尝试了互联网上的所有内容,但似乎没有任何解决方法。我有Python版本3.7.1
问题在哪里,更重要的是:我该如何解决?
答案 0 :(得分:0)
首先,如果您已经使用pip安装了tensorflow,尝试使用conda再次安装它是一个坏主意。在运行conda命令之前,请先卸载pip版本。
pip uninstall tensorflow
您看到的是一个奇怪的错误。尝试指定您要从中安装的频道。可以从anaconda和conda-forge渠道购买
conda isntall tensorflow --channel anaconda