Advertisement
Guest User

ERROROROROROROORRORO

a guest
Nov 12th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.98 KB | None | 0 0
  1. # This Python file uses the following encoding: utf-8
  2. import sys
  3. from PySide2.QtWidgets import QApplication
  4.  
  5.  
  6. class wind:
  7.     def __init__(self):
  8.         pass  # call __init__(self) of the custom base class here
  9.  
  10.  
  11. if __name__ == "__main__":
  12.     app = QApplication([])
  13.     window = wind()
  14.     # window.show()
  15.     sys.exit(app.exec_())
  16.  
  17. File "C:\Users\who\AppData\Local\Programs\Python\Python36\lib\site-packages\PySide2\__init__.py", line 51, in <module>
  18.     _setupQtDirectories()
  19.   File "C:\Users\who\AppData\Local\Programs\Python\Python36\lib\site-packages\PySide2\__init__.py", line 21, in _setupQtDirectories
  20.     import shiboken2
  21.   File "C:\Users\who\AppData\Local\Programs\Python\Python36\lib\site-packages\shiboken2\__init__.py", line 27, in <module>
  22.     from .shiboken2 import *
  23. ImportError: DLL load failed: Не найдена указанная процедура.
  24. 18:28:47: C:\Users\who\AppData\Local\Programs\Python\Python36\python.exe завершился с кодом 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement