我使用Ubuntu 13.10和python 2.7。运行代码时出现此错误。我安装了FFTW,不知道为什么我会收到这个错误。这是我的代码:
import math
from gnuradio import gr
import numpy
import scipy.signal
import pyfftw
这是我收到错误的地方。任何帮助都会很棒。感谢
答案 0 :(得分:0)
检查python中的sys.path。这告诉你模块搜索路径。如果它不在那里,而不在%PYTHONPATH%路径中(也应该在sys.path中),那么它应该无法找到它。如果您安装了模块,解释器仍然需要知道在哪里查找,如果它不在默认搜索位置。