错误“找不到指定的模块”
Posted
技术标签:
【中文标题】错误“找不到指定的模块”【英文标题】:Error "specified module could not found" 【发布时间】:2015-12-22 16:11:35 【问题描述】:我刚刚用 pip 安装了 Liblas:
C:\Users\Geri>pip install liblas
Requirement already satisfied (use --upgrade to upgrade): liblas in c:\python27\arcgis10.2\lib\site-packages
Requirement already satisfied (use --upgrade to upgrade): setuptools in c:\python27\arcgis10.2\lib\site-packages (from liblas)
当我想导入模块时,我得到了以下信息:
>>> import liblas
Runtime error
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Python27\ArcGIS10.2\lib\site-packages\liblas\__init__.py", line 2, in <module>
from core import get_version
File "C:\Python27\ArcGIS10.2\lib\site-packages\liblas\core.py", line 136, in <module>
las = ctypes.CDLL(lib_name)
File "C:\Python27\ArcGIS10.2\Lib\ctypes\__init__.py", line 365, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found
请帮忙
【问题讨论】:
您是否有标准的 Python 安装或第三方发行版,例如 OSGeo4W 或 Anaconda? Pip 将其安装到标准安装的正确位置。 我使用的是2.7版本的python,它是随ArcGIS一起安装的 如果它与 ArcGIS 一起安装,可能它创建了一个不同于标准路径的站点包路径,而不是用于将包导入其软件的标准路径,或者可能没有为系统路径正确设置环境变量 我还安装了 laspy 模块,效果很好。 looks like you're not the only one running into this conflict/problem 【参考方案1】:我的解决方案是确保liblas.dll
和liblas_c.dll
在我所有的python 实例的DLLs 文件夹中(我在ArcGIS、OSGeo4W 和WinPython 中有python 2.7)。
在尝试了安装 liblas 包的所有方法(WinPython 控制面板、pip 和使用来自https://pypi.python.org/pypi/libLAS/1.6.0 的 exe 进行安装)之后,我在 C:\Python27\ArcGIS10.2\DLLs
中找到了 dll。
我没有尝试通过 OSGeo4w 使用 liblas
,因为我不确定将 dll 放在哪里(我将它们放在 C:/OSgeo4w64/bin
文件夹中,但没有帮助)并且安装程序中的 OSgeo4w command_line 包列表告诉我liblas 不可用。我还确保C:/OSgeo4w64/bin
在我的路径中(因为这是上面和其他地方的建议)......不确定这是否有帮助。
现在一切正常。
【讨论】:
以上是关于错误“找不到指定的模块”的主要内容,如果未能解决你的问题,请参考以下文章
WindowsError:[错误 126] 找不到指定的模块