错误:没有名为 qgis 的模块

发布于 2024-12-28 01:52:39 字数 564 浏览 2 评论 0原文

我正在研究Python26、pyqt4 设计器和QGIS。我的代码文件(.py 文件)包含以下内容:

   import sys
   from PyQt4 import QtGui, QtCore
   from qgis.core import *
   from qgis.gui import *

但是当我尝试运行它时,它给出错误消息:

Traceback (most recent call last):
  File "C:\rt_sql_layer_working\DlgQueryBuilder.py", line 29, in <module>
    from qgis import core,gui
ImportError: No module named qgis

我已经将环境变量中的 PATH 设置为

C:\Program Files\Quantum GIS Wroclaw\bin
C:\Program Files\Quantum GIS Wroclaw\apps\qgis\bin

I am working on Python26,pyqt4 designer and QGIS. My code file (.py file)contains this:

   import sys
   from PyQt4 import QtGui, QtCore
   from qgis.core import *
   from qgis.gui import *

but when i try to run it it gives error saying:

Traceback (most recent call last):
  File "C:\rt_sql_layer_working\DlgQueryBuilder.py", line 29, in <module>
    from qgis import core,gui
ImportError: No module named qgis

I already set PATH in environmental variable as

C:\Program Files\Quantum GIS Wroclaw\bin
C:\Program Files\Quantum GIS Wroclaw\apps\qgis\bin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情归归情 2025-01-04 01:52:39

如果您仅设置 PATH 而不是 PYTHONPATH,我的建议是检查要导入的模块的位置是否在 PYTHONPATH 中并且,如果情况并非如此,请适当设置 PYTHONPATH

If you set just PATH instead of PYTHONPATH, my advice would be to check if the location of the module you want to import is in the PYTHONPATH and, if that's not the case, set the PYTHONPATH appropriately.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文