a.py:
import numpy
pyre
a.py:1:0 Undefined import [21]: Could not find a module corresponding to import `numpy`.
虽然肯定我安装了numpy。
环境:Ubuntu,python 3.7.1,pyre 0.0.22,numpy 1.16.2
答案 0 :(得分:1)
好,知道了。需要安装numpy-stubs
答案 1 :(得分:-1)
好像您还没有为整个系统安装numpy
首先,您可以使用pip(替代的Python软件包安装程序)为整个系统安装numpy:
sudo apt-get install python-pip
sudo pip install numpy scipy
然后重新启动并编译python脚本。 如果没有用,请在下面评论。