About 56 results
Open links in new tab
  1. python - Why I can not Install PySide2? - Stack Overflow

    Mar 11, 2023 · I want to Install PySide 2 library But apparently this library is not found. I tried this to install PySide2: pip3 install PySide2 But after executing this command, I encountered the same …

  2. python - Why do I keep getting errors when I try to install PySide2 on ...

    I have been trying to install PySide2 on my PC (Windows 10 64bits) with Python 3.8 installed, but I keep getting errors every time. I used the command pip install PySide2.

  3. PySide2 (Qt for python) installation on Jetson Xavier

    Dec 1, 2020 · Qt is not officially supported on embedded platforms (said the Qt official website). I tried pip install PySide2 and apt-get install python3-pyside2 but both failed. Is there a way to build it from …

  4. Installing PySide2 for Python 3.8, Windows - Stack Overflow

    Dec 13, 2019 · I would like to install PySide2 on my Windows 10, Python version 3.8, despite the wheels not being released for it yet. Naturally, I have first tried the pip install --python-version 3.7 command …

  5. python - PySide2 on windows - Stack Overflow

    PySide2 is now available on pypi so a simple ... should work on Windows, OSX, and linux!

  6. python - How to install PySide2 / PyQt5 on Raspberry Pi with ...

    Nov 5, 2021 · I am aware it is possible to install PySide2 on Raspbian using the following command: sudo apt-get install python3-pyside2.qt3dcore python3-pyside2.qt3dinput python3-pyside2.qt3dlogic …

  7. 'PySide2.QtWidgets.QApplication' object has no attribute 'exec'

    Jul 15, 2020 · Try exec_() instead of exec() PySide2 uses this because of legacy reasons (exec used to be a reserved keyword in Python in the past).

  8. How do I solve error "no module found named pyside2"?

    Jul 15, 2019 · The second is you have installed the Pyside2 but in one installation and trying to use it from another installation, to tackle with this, Create a virtual environment for your project and install …

  9. Is there an easy way of installing PySide 2 for Windows?

    Nov 27, 2017 · Is there any way to "simply" install PySide 2 on Windows 10?If not are there tutorials for installing it? Can I export a PySide 2 project to an .exe file?

  10. PySide2 equivalent of PyQt5's loadUiType () to dynamically mix in UI ...

    Jun 18, 2019 · The problem is, PySide2 does not provide an equivalent of PyQt5's uic.loadUiType() function, which, importantly, returns the design's form class to be used as the mix-in.