Ku friends,actually wanted to do a console application in Python(3.8.2). Distribute interface,trying to compile ui to py(with this team - pyside2-uic "C:\Users\Fox\Desktop\project R\calc\gui.ui" -x-o "C:\Users\Fox\Desktop\project R\calc\calc.py" ) and produces an error
spoilerTraceback (most recent call last):
File "c:\users\fox\appdata\local\programs\python\python38-32\lib\runpy.py", line 193, in _run_module_as_main
return _run_code(code, main_globals, None,
File "c:\users\fox\appdata\local\programs\python\python38-32\lib\runpy.py", line 86, in _run_code
exec(code, run_globals)
File "C:\Users\Fox\AppData\Local\Programs\Python\Python38-32\Scripts\pyside2-uic.exe\__main__.py", line 5, in
File "c:\users\fox\appdata\local\programs\python\python38-32\lib\site-packages\PySide2\__init__.py", line 88, in
_setupQtDirectories()
File "c:\users\fox\appdata\local\programs\python\python38-32\lib\site-packages\PySide2\__init__.py", line 50, in _setupQtDirectories
for dir in _additional_dll_directories(pyside_package_dir):
File "c:\users\fox\appdata\local\programs\python\python38-32\lib\site-packages\PySide2\__init__.py", line 22, in _additional_dll_directories
raise ImportError(shiboken2 + 'does not exist')
ImportError: c:\users\fox\appdata\local\programs\python\python38-32\lib\shiboken2\libshiboken does not exist
I tried using another command pyuic5 gui.ui -o calc.py. the error says that I have no PyQt5.sip (ModuleNotFoundError: No module named 'PyQt5.sip'),trying to install this module and the result is error: Microsoft Visual C++ 14.0 is required. What to do? the first time I heard about vc version 14,and still can't find how to install it... Maybe a bad idea to try pyqt and better than some other framework? But what? I need the design to do in pyqt...
Thanks in advance for the answer!