Importerror no module named pyqt5 linux

How to install PyQt5 in Python 3 (Ubuntu 14.04)

Online I find the following steps: http://pyqt.sourceforge.net/Docs/PyQt5/installation.html But they are too many. What’s the easiest way to Install PyQt5 along with Python3 in Ubuntu 14.04 ?

The install process went ok. But got runtime error QtCore.so: undefined symbol: PySlice_AdjustIndices

4 Answers 4

Why not simply install it via apt-get?

sudo apt-get install python3-pyqt5 

Otherwise you’d have to compile PyQt (and potentially Qt) by hand, which is cumbersome.

Well I documented the steps for Installing pyqt5 with qt designer and code generation here: https://gist.github.com/1dcd57542bdaf3c9d1b0dd526ccd44ff

Installation

pip3 install --user pyqt5 sudo apt-get install python3-pyqt5 sudo apt-get install pyqt5-dev-tools sudo apt-get install qttools5-dev-tools 

Configuring to run from terminal

$ qtchooser -run-tool=designer -qt=5 

Write the following in /usr/lib/x86_64-linux-gnu/qt-default/qtchooser/default.conf

/usr/lib/x86_64-linux-gnu/qt5/bin /usr/lib/x86_64-linux-gnu 

Code Generation

#!/usr/bin/python3 import subprocess import sys child = subprocess.Popen(['pyuic5' ,'-x',sys.argv[1]],stdout=subprocess.PIPE) print(str(child.communicate()[0],encoding='utf-8')) 

Create a symlink:

$ sudo ln uic.py "/usr/lib/x86_64-linux-gnu/qt5/bin/uic" 

Desktop Entry

[Desktop Entry] Name=Qt5 Designer Icon=designer Exec=/usr/lib/x86_64-linux-gnu/qt5/bin/designer Type=Application Categories=Application Terminal=false StartupNotify=true Actions=NewWindow Name[en_US]=Qt5 Designer [Desktop Action NewWindow] Name=Open a New Window Exec=/usr/lib/x86_64-linux-gnu/qt5/bin/designer 

save in ~/.local/share/application with .desktop extension

pip3 install —user pyqt5 will most likely throw Could not find a version that satisfies the requirement sip>=4.19.1 . I’m installing it from a fresh Linux installation.

How to install PyQt5 in Python3

Just installing it did not work for me. I had to uninstall it first, then reinstall it:

# upgrade pip python3 -m pip install --upgrade pip # uninstall python3 -m pip uninstall PyQt5 python3 -m pip uninstall PyQt5-sip python3 -m pip uninstall PyQtWebEngine # reinstall python3 -m pip install PyQt5 python3 -m pip install PyQt5-sip python3 -m pip install PyQtWebEngine 

See here for my full answer, including how to install it for a specific version of Python3, such as Python3.8: How to install PyQt5 in Python3

Источник

Importerror no module named pyqt5 linux

Last updated: Feb 1, 2023
Reading time · 10 min

banner

# ModuleNotFoundError: No module named ‘PyQt5’ in Python

The Python «ModuleNotFoundError: No module named ‘PyQt5′» occurs when we forget to install the PyQt5 module before importing it or install it in an incorrect environment.

To solve the error, install the module by running the pip install PyQt5 command.

no module named pyqt5

Open your terminal in your project’s root directory and install the PyQt5 module.

Copied!
# 👇️ in a virtual environment or using Python 2 pip install PyQt5 # 👇️ for python 3 (could also be pip3.10 depending on your version) pip3 install PyQt5 # 👇️ if you get permissions error sudo pip3 install PyQt5 pip install PyQt5 --user # 👇️ if you don't have pip in your PATH environment variable python -m pip install PyQt5 # 👇️ for python 3 (could also be pip3.10 depending on your version) python3 -m pip install PyQt5 # 👇️ using py alias (Windows) py -m pip install PyQt5 # 👇️ alternative for Ubuntu/Debian sudo apt-get install python3-pyqt5 # 👇️ for Anaconda conda install -c anaconda pyqt # 👇️ for Jupyter Notebook !pip install PyQt5

After you install the PyQt5 package, try importing it like:

Copied!
from PyQt5.QtCore import QObject, pyqtSignal class Foo(QObject): closed = pyqtSignal() range_changed = pyqtSignal(int, int, name='rangeChanged') valueChanged = pyqtSignal([int], ['QString'])

# Common causes of the error

The error occurs for multiple reasons:

  1. Not having the PyQt5 package installed by running pip install PyQt5 .
  2. Installing the package in a different Python version than the one you’re using.
  3. Installing the package globally and not in your virtual environment.
  4. Your IDE running an incorrect version of Python.
  5. Naming your module pyqt5.py which would shadow the official module.
  6. Declaring a variable named PyQt5 which would shadow the imported variable.
Читайте также:  Linux bash экранирование символов

If the error persists, get your Python version and make sure you are installing the package using the correct Python version.

get python version

For example, my Python version is 3.10.4 , so I would install the PyQt5 package with pip3.10 install PyQt5 .

Copied!
pip3.10 install PyQt5 # 👇️ if you get permissions error use pip3 (NOT pip3.X) sudo pip3 install PyQt5

Notice that the version number corresponds to the version of pip I’m using.

If the PATH for pip is not set up on your machine, replace pip with python3 -m pip :

Copied!
# 👇️ make sure to use your version of Python, e.g. 3.10 python3 -m pip install PyQt5

If the error persists, try restarting your IDE and development server/script.

# Check if the package is installed

You can check if you have the PyQt5 package installed by running the pip show PyQt5 command.

Copied!
# 👇️ check if you have PyQt5 installed pip show PyQt5 # 👇️ if you don't have pip set up in PATH python -m pip show PyQt5

The pip show PyQt5 command will either state that the package is not installed or show a bunch of information about the package, including the location where the package is installed.

# Make sure your IDE is using the correct Python version

If the package is not installed, make sure your IDE is using the correct version of Python.

If you have multiple Python versions installed on your machine, you might have installed the PyQt5 package using the incorrect version or your IDE might be set up to use a different version.

For example, In VSCode, you can press CTRL + Shift + P or ( ⌘ + Shift + P on Mac) to open the command palette.

Then type «Python select interpreter» in the field.

python select interpreter

Then select the correct python version from the dropdown menu.

select correct python version

Your IDE should be using the same version of Python (including the virtual environment) that you are using to install packages from your terminal.

Читайте также:  Xilinx usb cable linux

# Install the package in a Virtual Environment

If you are using a virtual environment, make sure you are installing PyQt5 in your virtual environment and not globally.

You can try creating a virtual environment if you don’t already have one.

Copied!
# 👇️ use correct version of Python when creating VENV python3 -m venv venv # 👇️ activate on Unix or MacOS source venv/bin/activate # 👇️ activate on Windows (cmd.exe) venv\Scripts\activate.bat # 👇️ activate on Windows (PowerShell) venv\Scripts\Activate.ps1 # 👇️ install PyQt5 in virtual environment pip install PyQt5

If the python3 -m venv venv command doesn’t work, try the following 2 commands:

Your virtual environment will use the version of Python that was used to create it.

If the error persists, make sure you haven’t named a module in your project as pyqt5.py because that would shadow the original PyQt5 module.

You also shouldn’t be declaring a variable named PyQt5 as that would also shadow the original module.

# Try reinstalling the package

If the error is not resolved, try to uninstall the PyQt5 package and then reinstall it.

Copied!
# 👇️ check if you have PyQt5 installed pip show PyQt5 # 👇️ if you don't have pip set up in PATH python -m pip show PyQt5 # 👇️ uninstall PyQt5 pip uninstall PyQt5 # 👇️ if you don't have pip set up in PATH python -m pip uninstall PyQt5 # 👇️ install PyQt5 pip install PyQt5 # 👇️ if you don't have pip set up in PATH python -m pip install PyQt5

Try restarting your IDE and development server/script.

You can also try to upgrade the version of the PyQt5 package.

Copied!
pip install PyQt5 --upgrade # 👇️ if you don't have pip set up in PATH python -m pip install PyQt5 --upgrade

Источник

ImportError: No module named PytQt5

How can I solve this error. Updated ===================== When I tried to PyQt4, I got following error.

from PyQt4.QtCore import pyqtSlot as Slot RuntimeError: the sip module implements API v10.0 to v10.1 but the PyQt4.QtCore module requires API v8.1

1) download sip-4.15.3.tar.gz from here 2) extract sip-4.15.3.tar.gz 3) copy sip-4.15.3 to /home/thura 4) type «cd /home/thura/sip-4.15.3» 5) type «python configure.py», press enter, follow the instructions (type yes and press enter) 6) type «make», press enter and type «make install», press enter 7) download PyQt-gpl-5.1.1.tar.gz from here 8) extract PyQt-gpl-5.1.1.tar.gz 9) copy PyQt-gpl-5.1.1 folder to /home/thura folder. 10) type «cd /home/thura/PyQt-gpl-5.1.1» 11) type «python configure.py», press enter, following the instructions (type yes and press enter) 12)type «make», press enter and type «make install», press enter

make[2]: Entering directory `/home/thura/PyQt/qpy/QtDBus' make[2]: Nothing to be done for `install'. make[2]: Leaving directory `/home/thura/PyQt/qpy/QtDBus' make[1]: Leaving directory `/home/thura/PyQt/qpy' cd QtCore/ && ( test -e Makefile || /usr/lib/i386-linux-gnu/qt5/bin/qmake /home/thura/PyQt/QtCore/QtCore.pro -o Makefile ) && make -f Makefile install make[1]: Entering directory `/home/thura/PyQt/QtCore' g++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIC -DSIP_PROTECTED_IS_PUBLIC -Dprotected=public -DQT_NO_DEBUG -DQT_PLUGIN -DQT_CORE_LIB -I/usr/share/qt5/mkspecs/linux-g++ -I. -I/usr/local/include/python2.7 -I../qpy/QtCore -I/usr/include/qt5 -I/usr/include/qt5/QtCore -I. -o sipQtCoreQtWindowStates.o sipQtCoreQtWindowStates.cpp In file included from sipQtCoreQtWindowStates.cpp:24:0: sipAPIQtCore.h:28:17: fatal error: sip.h: No such file or directory compilation terminated. make[1]: *** [sipQtCoreQtWindowStates.o] Error 1 make[1]: Leaving directory `/home/thura/PyQt/QtCore' make: *** [sub-QtCore-install_subtargets-ordered] Error 2 

Источник

Читайте также:  Install manageengine netflow linux

Не получается подключить библиотеку: ModuleNotFoundError: No module named ‘PyQt5.QtWidgets’

Использую Python 3.6 32-bit Решил из интереса посмотреть на питона, а он ругается и не хочет ничего показывать.

Вопрос должен иметь смысл даже если ссылка умрёт в вашем вопросе. Поэтому явно шаги, как вы пытались установить pyqt5, приведите.

Скачал PyQt5 с оф. сайта, переименовал папку в «PyQt5» и закинул её в Lib. Пробовал и через Pip, устанавливал и в PyCharm. Пробовал разные версии питона. 3.4, 3.5, 3.6. Ничто не помогло

вся информация необходимая для ответа должна быть в самом вопросе. Не помещайте информацию необходимую для ответа в комментарии к собственному вопросу, отредактируйте сам вопрос вместо этого (см. кнопка править под вопросом). «Ничто не помогло» — не информативно (вместо этого лучше писать: сделал «то-то», ожидал «это», а получил «вот это» по шагам).

Редактируй вопрос сам. У меня нет желания делать этого. Все равно на вопрос нет ответов и не будет. Проблема гуглится за 5 секунд, ответа нет нигде.

3 ответа 3

Действительно. Поставил PyCharm и python 3.6.2 как интерпретатор проекта, плюс установил через pip3 библиотеку PyQt5. Сделал как в гайде сказано и та же ошибка. Если запускать из терминала файл с кодом вне PyCharm, то все работает, так как в операционной системе используется python 3.5.2. Если запускать из PyCharm, то не работает. У меня Ubuntu 16.04, а это значит, что для воспроизведения ошибки ОС не важна.

Изменил в настройках проекта интерпретатор на версию python 3.5.2 и все заработало. Присмотрелся и увидел, что в основной используемой системой версии python 3.5.2 есть библиотека PyQt5, а при смене интерпретатора проекта на python 3.6.2 ее нет.

Лечится так: File — Settings — Project: — Project Interpreter — устанавливаем нужную нам версию интерпретатора(python 3.6.2 например) — Install(плюсик сбоку) — Available Packages — набираем в поиске PyQt5 — нажимаем Install Package

sudo apt-get install python3-pyqt5 команда по ссылке ставит PyQt5 на системный питон (Python 3.5 на вашей Ubuntu). pip3 не ясно к какому питону относится у вас. Ожидаемо, если вы настроили PyCharm использовать Python 3.6, то в PyCharm вы и не увидите PyQt5 — если хотите использовать Python 3.6 ставьте для него библиотеки, если хотите использовать Python 3.5, то отдельно библиотеки ставить следует. Вы ожидали, что поставив для Python 3.5, у вас автоматически PyQt5 на Питоне 3.6 заработает?

В данном случае один и тот же дистрибутив ( PyQt5-5.9-5.9.1-cp35.cp36.cp37-abi3-manylinux1_x86_64.whl на Linux) можно использовать для установки на разные версии с помощью одной и той же команды pip install PyQt5 внутри соответствующего virtualenv. Для каждого Питона отдельно программу установки запускайте.

Ваши комментарии верны, однако я лишь воспроизвел проблему и нашел из нее выход. Использование virtualenv значительно правильней и удобней. Совершенно с вами согласен.

Источник

Оцените статью
Adblock
detector