我正在用 choregraphe 编写一个块的代码,我需要 numpy 和枕头库中的一些函数。我使用 pip 在行为的同一文件夹中安装了枕头和 numpy。在 Choregraphe 里面我试过的块代码:
from sys import path
path.append(ALFrameManager.getBehaviorPath(self.behaviorId))
from PIL import Image
from scipy import array, inf
from scipy.sparse.csgraph import shortest_path, csgraph_from_dense
我得到这个错误:
ImportError: cannot import name _imaging
如果我评论该行
from PIL import Image
我收到此错误:
ImportError:
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes all
files not under version control). Otherwise reinstall numpy.
Original error was: cannot import name multiarray
我试图重新安装这两个库,但没有任何变化。我哪里错了?在同一个文件夹中还有一个我写的类但是导入它没有问题,我不明白为什么