S
S
studprogrammist2018-01-31 20:21:37
Python
studprogrammist, 2018-01-31 20:21:37

How to link Pycharm 2017.3.3 and PyQt5?

Help linking Pycharm 2017.3.3 with PyQt5.
Tried to follow this video instruction.
True, I have Windows 10.
Installation sequence.
1. PyCharm 2017.3.3
2. python-3.5.2-webinstall
3. PyQt5-5.6-gpl-Py3.5-Qt5.6.0
-
5a71f9790e2cf897812735.png
x32-2 code in PyCharm:

#!/usr/bin/python3
# -*- coding: utf-8 -*-

import sys
from PyQt5.QtWidgets import QApplication, QWidget


if __name__ == '__main__':

    app = QApplication(sys.argv)

    w = QWidget()
    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')
    w.show()

    sys.exit(app.exec_())

In the console it gives:
from PyQt5.QtWidgets import QApplication, QWidget
ImportError: DLL load failed: The specified procedure was not found.
The interpreter in PyCharm is set up like this: I
5a71fab647b3b614922302.png
suspect that something is not correctly indicated here:
5a71fb0dbd391738286061.png

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question