为什么没有在python中导入就失败了

时间:2015-03-17 20:52:17

标签: python import pyqt5 qtwidgets

我是新手,刚开始学习Python编程:

import sys
from PyQt5 import QtWidgets

if __name__ == "__main__":
    app = QtWidgets.QApplication(sys.argv)

    mainWindow = QtWidgets.QMainWindow()
    mainWindow.show()

    sys.exit(app.exec_())

当我运行上面的代码时,每个都可以。但是,当我运行下面的代码时,它失败并显示以下错误消息: app = PyQt5.QtWidgets.QApplication(sys.argv) AttributeError:'模块'对象没有属性' QtWidgets'

import sys
import PyQt5
if __name__ == "__main__":
    app = PyQt5.QtWidgets.QApplication(sys.argv)

    mainWindow = PyQt5.Qtwidgets.QmainWindow()
    mainWindow.show()

    sys.exit(app.exec_())

顺便说一句,我的Python版本是2.7,我使用的是Qt5库,我的操作系统是OpenSUSE 13.2,当然是Linux的发行版。

2 个答案:

答案 0 :(得分:1)

Qtwidgets文件是.so目录中的已编译PyQt5文件,所有模块都是如此,__init__.py文件中没有导入,因此您需要使用...

在目录test1.cpython-34m.so中使用cython编译文件py3且空__init.__py的示例表现出相同的行为:

In [1]: import py3

In [2]: py3.test1
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-2-9aa45b2a49b6> in <module>()
----> 1 py3.test1

AttributeError: 'module' object has no attribute 'test1'

In [3]: from py3 import test1
In [4]: test1.foo()
Out[4]: 100

PyQt5中的文件如下:

/usr/lib/python3/dist-packages/PyQt5$ ls
__init__.py
__pycache__
_QOpenGLFunctions_2_0.cpython-34m-x86_64-linux-gnu.so
QtCore.cpython-34m-x86_64-linux-gnu.so
Qt.cpython-34m-x86_64-linux-gnu.so
QtDBus.cpython-34m-x86_64-linux-gnu.so
QtDesigner.cpython-34m-x86_64-linux-gnu.so
QtGui.cpython-34m-x86_64-linux-gnu.so
QtHelp.cpython-34m-x86_64-linux-gnu.so
QtNetwork.cpython-34m-x86_64-linux-gnu.so
QtOpenGL.cpython-34m-x86_64-linux-gnu.so
QtPrintSupport.cpython-34m-x86_64-linux-gnu.so
QtTest.cpython-34m-x86_64-linux-gnu.so
QtWidgets.cpython-34m-x86_64-linux-gnu.so
uic

使用cat,您可以看到__init__.py中没有导入:

$:/usr/lib/python3/dist-packages/PyQt5$ cat __init__.py 
# Copyright (c) 2014 Riverbank Computing Limited <info@riverbankcomputing.com>
# 
# This file is part of PyQt5.
# 
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file.  Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
# 
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license.  For more information contact
# info@riverbankcomputing.com.
# 
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 

因为当您尝试使用__init__.py时,PyQt5.Qtwidgets中没有导入,您会收到错误,因为模块显然没有属性。

如果您向from . import QtWidgets添加__init__.py之类的内容,那么您可以使用import PyQt5 PyQt5.QtwidgetsPyQt5.Qtwidgets也可以在导入模块时使用空白初始值{{} 1}}来自 Qtwidgets

你可以看到PyQt5当你实际拥有模块的时候:

import PyQt5

因此,真正的区别以及您看到输出的原因是您尝试从第二个示例中的模块导入,并在第一个示例中导入

答案 1 :(得分:1)

PyQt5部分仅为一组模块提供命名空间。它本身不包含任何内容,因此您无法直接从中导入任何内容。

这是一个刻意的设计决定,并且有充分的理由。程序包中可能总共有三十个或更多模块,因此每次导入PyQt5本身时加载全部将是一个沉重的前期成本。因此,目的只是支付加载实际需要的模块的成本。

但是,有时您执行想要一次加载所有模块。例如,在python交互式会话中进行实验时能够做到这一点非常方便。实际上,PyQt提供了一个特殊模块,它完全可以实现:

>>> from PyQt5 import Qt
>>> Qt.QWidget
<class 'PyQt5.QtWidgets.QWidget'>
>>> Qt.QObject
<class 'PyQt5.QtCore.QObject'>
>>> Qt.QNetworkCookie
<class 'PyQt5.QtNetwork.QNetworkCookie'>