Python Forum
pip3 install opencv-python fails on 'skbuild'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pip3 install opencv-python fails on 'skbuild'
#1
With some help from askubuntu I got it working:

I used:

Quote:sudo apt-get install python3-opencv

I must have installed the module for Python 2!!

I would like to dabble with qr codes.

From here I see I need opencv-python, qrcode and numpy

The FAQ on the link above says:

Quote:Q: Pip install fails with ModuleNotFoundError: No module named 'skbuild'?

Since opencv-python version 4.3.0.*, manylinux1 wheels were replaced by manylinux2014 wheels. If your pip is too old, it will try to use the new source distribution introduced in 4.3.0.38 to manually build OpenCV because it does not know how to install manylinux2014 wheels. However, source build will also fail because of too old pip because it does not understand build dependencies in pyproject.toml. To use the new manylinux2014 pre-built wheels (or to build from source), your pip version must be >= 19.3. Please upgrade pip with pip install --upgrade pip.

But, when I try:

Quote:pedro@pedro-512ssd:~$ pip3 install --upgrade pip3
Collecting pip3

this fails.

I have:

Quote:pedro@pedro-512ssd:~$ pip3 --version
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)

The above FAQ states: "your pip version must be >= 19.3"

I think I should be using pip3, not pip but upgrading pip also fails:

Quote:pedro@pedro-512ssd:~$ pip install --upgrade pip
Collecting pip
Cache entry deserialization failed, entry ignored
Could not find a version that satisfies the requirement pip (from versions: )
No matching distribution found for pip
pedro@pedro-512ssd:~$

How can I get cv2 working??
Reply
#2
try: pip3 install opencv-python
Reply
#3
(Sep-15-2020, 12:08 AM)Pedroski55 Wrote: pedro@pedro-512ssd:~$ pip3 install --upgrade pip3
Collecting pip3

this fails.
It is like this no pip3 last when upgrade,test with pip3 -V after.
pip3 install --upgrade pip
# Or if need sudo
sudo pip3 install --upgrade pip

# Then install
pip3 install opencv-python
# Or no sudo
pip3 install --user opencv-python
To get upgrade of all look at pyenv Simple Python Version Management
A 2-minutte demo to install Python 3.8.5 and opencv-python.
# install 3.8.5
mint@mint ~ $ pyenv install 3.8.5
Installing Python-3.8.5...
Installed Python-3.8.5 to /home/mint/.pyenv/versions/3.8.5
 
# Set global(system wide)
mint@mint ~ $ pyenv global 3.8.5

# Test pip
tom@tom-VirtualBox:~$ pip -V
pip 20.2.3 from /home/tom/.pyenv/versions/3.8.5/lib/python3.8/site-packages/pip (python 3.8)

# Install opencv-python
tom@tom-VirtualBox:~$ pip install opencv-python
Collecting opencv-python ...
Successfully installed opencv-python-4.4.0.42

# Test that it work
tom@tom-VirtualBox:~$ python
Python 3.8.5 (default, Sep 15 2020, 12:43:19) 
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2

>>> 
>>> cv2.__version__
'4.4.0'
>>> exit()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  image processing with opencv-python and Tesseract OCR marchellopl 4 157 Feb-15-2026, 12:27 AM
Last Post: Pedroski55
  pip fails to install PyGObject voidtrance 2 4,915 Sep-11-2025, 10:50 AM
Last Post: Larz60+
  Trying to install the edk2-rk3399 code but the script fails due some python bug mariozio 2 1,919 Aug-17-2025, 10:25 PM
Last Post: mariozio
  pip3 install certifi failing with timeouts rb9594 1 955 Jul-15-2025, 08:52 AM
Last Post: Pedroski55
  Problem with using opencv in python Raunak1023984765 21 18,008 Feb-21-2024, 04:25 PM
Last Post: Pedroski55
  Anaconda 2.4.2: The JupyterLab 3.5.3 fails to run the python code of the Geographical jamalnuman 0 1,269 Aug-23-2023, 07:48 AM
Last Post: jamalnuman
  ModuleNotFoundError: No module named '_struct' when starting pip3 yuhuihu 0 4,706 May-05-2022, 04:41 AM
Last Post: yuhuihu
  cmake and pip3 install warnings with python 3.10.2 cyrduf 0 3,414 Feb-26-2022, 01:08 PM
Last Post: cyrduf
  what to do if moudle not in pip3 only in pip2? korenron 22 12,209 Oct-25-2021, 02:35 PM
Last Post: snippsat
  pip3 v21.1.2 SSL Error on RHEL 7 malibu 0 4,215 Jun-01-2021, 03:17 PM
Last Post: malibu

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020