运行推荐引擎crab时,报错:
C:\Python27\lib\site-packages\scipy\spatial\__init__.py in <module>()
89 from .kdtree import *
90 from .ckdtree import *
---> 91 from .qhull import *
92 from ._plotutils import *
93
ImportError: DLL load failed: 找不到指定的模块。
新人看不懂from .xxx import这个.是什么意思?
另外这个错误应该怎么查呢?
看了原始代码:
87 from __future__ import division, print_function, absolute_import
88
89 from .kdtree import *
90 from .ckdtree import *
91 from .qhull import *
92 from ._plotutils import *
93
94 __all__ = [s for s in dir() if not s.startswith('_')]
95 __all__ += ['distance']
貌似报错在空行?奇怪
C:\Python27\lib\site-packages\scipy\spatial\__init__.py in <module>()
89 from .kdtree import *
90 from .ckdtree import *
---> 91 from .qhull import *
92 from ._plotutils import *
93
ImportError: DLL load failed: 找不到指定的模块。
新人看不懂from .xxx import这个.是什么意思?
另外这个错误应该怎么查呢?
看了原始代码:
87 from __future__ import division, print_function, absolute_import
88
89 from .kdtree import *
90 from .ckdtree import *
91 from .qhull import *
92 from ._plotutils import *
93
94 __all__ = [s for s in dir() if not s.startswith('_')]
95 __all__ += ['distance']
貌似报错在空行?奇怪
