Я получаю эту ошибку: Ошибка загрузки DLL: Указанный модуль не найден - PullRequest
0 голосов
/ 01 февраля 2019

Traceback (последний вызов был последним): файл "G: \ Automatic-Attendance-System-master \ main_window.py", строка 1, из импорта из PyQt4 QtGui, QtCore ImportError: ошибка загрузки DLL: указанная ошибкамодуль не найден.

Я установил Python 3.6.5 64 bit и установил SIP и PyQt4 64 bit библиотеки.Но я не могу запустить этот код.Это показывает, что загрузка DLL не удалась.

from PyQt4 import QtGui,QtCore
from registration_window import RegistrationWindow
from attendance_window import AttendanceWindow

class MainWindow(QtGui.QMainWindow):
    #Main Window of Interface
    def __init__(self):
        super(MainWindow, self).__init__()
        self._registration_window = None
        self._attendance_window = None
        self.setGeometry(300,50,800,600)
        self.setWindowTitle("Automated Attendance System")
        self.setWindowIcon(QtGui.QIcon('other_images/logo.png'))

    #Heading
    h=QtGui.QLabel(self)
    h.setAlignment(QtCore.Qt.AlignCenter)
    h.setGeometry(QtCore.QRect(100,30,600,60))
    h.setStyleSheet("QLabel { background-color : blue;color :white ; }")
    font=QtGui.QFont("Times",20,QtGui.QFont.Bold)
    h.setFont(font)
    h.setText("AUTOMATED ATTENDANCE SYSTEM")

    #Registration Button for opening registration window
    b1=QtGui.QPushButton(self)
    b1.setText("REGISTRATION")
    font1=QtGui.QFont("Times",16,QtGui.QFont.Bold)
    b1.setFont(font1)
    b1.setGeometry(450,200,200,50)
    b1.setStyleSheet("QPushButton { background-color : gray;color :black ; }")
    b1.clicked.connect(self.create_registration_window)
...