ModuleNotFoundError:没有名为“ numpy.testing._private”的模块

时间:2018-10-06 13:17:02

标签: python numpy tensorflow

我正在尝试运行tensorflow:

enter image description here

原来

from numpy.testing._private.pytesttester import PytestTester
  

ModuleNotFoundError:没有名为“ numpy.testing._private”的模块

enter image description here

numpy / init .py如下所示: enter image description here

1 个答案:

答案 0 :(得分:1)

我安装了tensorflow时遇到了同样的问题。通过升级pip解决了该问题:

python.exe -m pip install --upgrade pip

并再次安装numpy:

pip uninstall numpy
pip install numpy