How to Solve Python ModuleNotFoundError: no module named 'cv2' (2024)

A common error you may encounter when using Python is modulenotfounderror: no module named ‘cv2’. This error occurs when Python cannot detect the OpenCV library in your current environment. You can install OpenCV using pip as follows:

python3 -m pip install opencv-python

This tutorial goes through the exact steps to troubleshoot this error for the Windows, Mac and Linux operating systems.

Table of contents

  • ModuleNotFoundError: no module named ‘cv2’
    • What is ModuleNotFoundError?
    • What is cv2?
  • Always Use a Virtual Environment to Install Packages
    • How to Install cv2 on Windows Operating System
      • cv2 installation on Windows Using pip and virtualenv
    • How to Install cv2 on Mac Operating System
      • cv2 installation on Mac Using pip and virtualenv
    • How to Install cv2 on Linux Operating Systems
      • Installing pip for Ubuntu, Debian, and Linux Mint
      • Installing pip for CentOS 8 (and newer), Fedora, and Red Hat
      • Installing pip for CentOS 6 and 7, and older versions of Red Hat
      • Installing pip for Arch Linux and Manjaro
      • Installing pip for OpenSUSE
      • cv2 installation on Linux Using pip and virtualenv
    • Installing cv2 Using Anaconda
    • Check cv2 Version
  • Summary

ModuleNotFoundError: no module named ‘cv2’

What is ModuleNotFoundError?

The ModuleNotFoundError occurs when the module you want to use is not present in your Python environment. There are several causes of the modulenotfounderror:

The module’s name is incorrect, in which case you have to check the name of the module you tried to import. Let’s try to import the re module with a double e to see what happens:

import ree
---------------------------------------------------------------------------ModuleNotFoundError Traceback (most recent call last)1 import reeModuleNotFoundError: No module named 'ree'

To solve this error, ensure the module name is correct. Let’s look at the revised code:

import reprint(re.__version__)
2.2.1

You may want to import a local module file, but the module is not in the same directory. Let’s look at an example package with a script and a local module to import. Let’s look at the following steps to perform from your terminal:

mkdir example_packagecd example_packagemkdir folder_1cd folder_1vi module.py

Note that we use Vim to create the module.py file in this example. You can use your preferred file editor, such as Emacs or Atom. In module.py, we will import the re module and define a simple function that prints the re version:

import redef print_re_version(): print(re.__version__)

Close the module.py, then complete the following commands from your terminal:

cd ../vi script.py

Inside script.py, we will try to import the module we created.

import moduleif __name__ == '__main__': mod.print_re_version()

Let’s run python script.py from the terminal to see what happens:

Traceback (most recent call last): File "script.py", line 1, in ≺module≻ import moduleModuleNotFoundError: No module named 'module'

To solve this error, we need to point to the correct path to module.py, which is inside folder_1. Let’s look at the revised code:

import folder_1.module as modif __name__ == '__main__': mod.print_re_version()

When we run python script.py, we will get the following result:

2.2.1

Lastly, you can encounter the modulenotfounderror when you import a module that is not installed in your Python environment.

What is cv2?

It may be unclear to see cv, cv2, and OpenCV used interchangeably online. OpenCV stands for Open Source Computer Vision Library, and it provides a common infrastructure for computer vision applications. OpenCV is written in C/C++ and has two Python interfaces, CV and CV2. CV2 is the latest Python interface. OpenCV does not come automatically installed with Python. The simplest way to install OpenCV is to use the package manager for Python called pip. The following installation instructions are for the major Python version 3.

Always Use a Virtual Environment to Install Packages

It is always best to install new libraries within a virtual environment. You should not install anything into your global Python interpreter when you develop locally. You may introduce incompatibilities between packages, or you may break your system if you install an incompatible version of a library that your operating system needs. Using a virtual environment helps compartmentalize your projects and their dependencies. Each project will have its environment with everything the code needs to run. Most ImportErrors and ModuleNotFoundErrors occur due to installing a library for one interpreter and trying to use the library with another interpreter. Using a virtual environment avoids this. In Python, you can use virtual environments and conda environments. We will go through how to install cv2 with both.

How to Install cv2 on Windows Operating System

First, you need to download and install Python on your PC. Ensure you select the install launcher for all users and Add Python to PATH checkboxes. The latter ensures the interpreter is in the execution path. Pip is automatically on Windows for Python versions 2.7.9+ and 3.4+.

You can check your Python version with the following command:

python3 --version

You can install pip on Windows by downloading the installation package, opening the command line and launching the installer. You can install pip via the CMD prompt by running the following command.

python get-pip.py

You may need to run the command prompt as administrator. Check whether the installation has been successful by typing.

pip --version

cv2 installation on Windows Using pip and virtualenv

To install cv2, first create the virtual environment. The environment can be any name, in this we choose “env”:

virtualenv env

You can activate the environment by typing the command:

env\Scripts\activate

You will see “env” in parenthesis next to the command line prompt. You can install cv2 within the environment by running the following command from the command prompt.

python3 -m pip install opencv-python

We use python -m pip to execute pip using the Python interpreter we specify as Python. Doing this helps avoid ImportError when we try to use a package installed with one version of Python interpreter with a different version. You can use the command which python to determine which Python interpreter you are using.

How to Install cv2 on Mac Operating System

Open a terminal by pressing command (⌘) + Space Bar to open the Spotlight search. Type in terminal and press enter. To get pip, first ensure you have installed Python3:

python3 --version
Python 3.8.8

Download pip by running the following curl command:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

The curl command allows you to specify a direct download link. Using the -o option sets the name of the downloaded file.

Install pip by running:

python3 get-pip.py

cv2 installation on Mac Using pip and virtualenv

To install cv2, first create the virtual environment:

python3 -m venv env

Then activate the environment using:

source env/bin/activate 

You will see “env” in parenthesis next to the command line prompt. You can install cv2 within the environment by running the following command from the command prompt.

python3 -m pip install opencv-python

How to Install cv2 on Linux Operating Systems

All major Linux distributions have Python installed by default. However, you will need to install pip. You can install pip from the terminal, but the installation instructions depend on the Linux distribution you are using. You will need root privileges to install pip. Open a terminal and use the commands relevant to your Linux distribution to install pip.

Installing pip for Ubuntu, Debian, and Linux Mint

sudo apt install python-pip3

Installing pip for CentOS 8 (and newer), Fedora, and Red Hat

sudo dnf install python-pip3

Installing pip for CentOS 6 and 7, and older versions of Red Hat

sudo yum install epel-releasesudo yum install python-pip3

Installing pip for Arch Linux and Manjaro

sudo pacman -S python-pip

Installing pip for OpenSUSE

sudo zypper python3-pip

cv2 installation on Linux Using pip and virtualenv

To install cv2, first create the virtual environment:

python3 -m venv env

Then activate the environment using:

source env/bin/activate 

You will see “env” in parenthesis next to the command line prompt. You can install cv2 within the environment by running the following command from the command prompt.

python3 -m pip install opencv-python

Installing cv2 Using Anaconda

Anaconda is a distribution of Python and R for scientific computing and data science. You can install Anaconda by going to the installation instructions. Once you have Anaconda installed, you can create a conda virtual environment to install cv2.

First, create a conda environment to install cv2.

conda create -n project python=3.6 

Then activate the project container. You will see “project” in parentheses next to the command line prompt.

source activate project

Now you’re ready to install cv2 using conda.

conda install -c conda-forge opencv

Check cv2 Version

Once you have successfully installed cv2, you can use two methods to check the version of cv2. First, you can use pip show from your terminal. Remember that the name of the package is opencv-python.

pip show opencv-python
Name: opencv-pythonVersion: 4.5.5.62Summary: Wrapper package for OpenCV python bindings.

Second, within your python program, you can import cv2 and then reference the __version__ attribute:

import cv2print(cv2.__version__)
4.5.5

Summary

Congratulations on reading to the end of this tutorial. The modulenotfounderror occurs if you misspell the module name, incorrectly point to the module path or do not have the module installed in your Python environment. If you do not have the module installed in your Python environment, you can use pip to install the package. However, you must ensure you have pip installed on your system. You can also install Anaconda on your system and use the conda install command to install OpenCV.

For further reading on installing data science and machine learning libraries, you can go to the articles:

  • Requests: How to Solve Python ModuleNotFoundError: no module named ‘requests’
  • Pandas: How to Solve Python ModuleNotFoundError: no module named ‘pandas’
  • Matplotlib: How to Solve Python ModuleNotFoundError: no module named ‘matplotlib’
  • Pygame: How to Solve Python ModuleNotFoundError: no module named ‘pygame’
  • PyTorch: How to Solve Python ModuleNotFoundError: no module named ‘torch’
  • openpyxl: How to Solve Python ModuleNotFoundError: no module named ‘openpyxl’

Go to theonline courses page on Pythonto learn more about Python for data science and machine learning.

Have fun and happy researching!

Suf

Research Scientist at Moogsoft | + posts

Suf is a research scientist at Moogsoft, specializing in Natural Language Processing and Complex Networks. Previously he was a Postdoctoral Research Fellow in Data Science working on adaptations of cutting-edge physics analysis techniques to data-intensive problems in industry. In another life, he was an experimental particle physicist working on the ATLAS Experiment of the Large Hadron Collider. His passion is to share his experience as an academic moving into industry while continuing to pursue research. Find out more about the creator of the Research Scientist Pod here and sign up to the mailing list here!

How to Solve Python ModuleNotFoundError: no module named 'cv2' (2024)

FAQs

How to Solve Python ModuleNotFoundError: no module named 'cv2'? ›

The Python "ModuleNotFoundError: No module named 'cv2'" occurs when we forget to install the opencv-python module before importing it or install it in an incorrect environment. To solve the error, install the module by running the pip install opencv-python command.

Why can't I import cv2 in Python? ›

importerror no module named cv2 error occurs when cv2 module is not properly installed or its path is not properly set or configured. The straight way fix for this error (no module named cv2) is to reinstall this module (OpenCV-python). In some scenario reinstalling this module automatically remove the older version.

How do I get a cv2 module in Python? ›

Building OpenCV from source
  1. Download and install Visual Studio and CMake. ...
  2. Download and install necessary Python packages to their default locations. ...
  3. Make sure Python and Numpy are working fine.
  4. Download OpenCV source. ...
  5. Extract it to a folder, opencv and create a new folder build in it.

How do I import and install cv2 in Python? ›

How to Install OpenCV for Python on Windows 10 - YouTube

How do I use cv2 in Python? ›

OpenCV-Python is a library of Python bindings designed to solve computer vision problems. cv2. imread() method loads an image from the specified file. If the image cannot be read (because of missing file, improper permissions, unsupported or invalid format) then this method returns an empty matrix.

How do I know if cv2 is installed? ›

After installation, it is recommended that you can check the version of OpenCV that Python is using: import cv2 print cv2. __version__ # Should print 3.0. 0-rc1 or newer.

What is cv2 library in python? ›

cv2 is the module import name for opencv-python, "Unofficial pre-built CPU-only OpenCV packages for Python". The traditional OpenCV has many complicated steps involving building the module from scratch, which is unnecessary. I would recommend remaining with the opencv-python library.

Is OpenCV and cv2 same? ›

cv2 (old interface in old OpenCV versions was named as cv ) is the name that OpenCV developers chose when they created the binding generators. This is kept as the import name to be consistent with different kind of tutorials around the internet.

Why cv2 is not defined? ›

This error may occur if you didn't install opencv module in your system. So first check this module is available or not. If it is not available, then install this module. But before that, try to check numpy module is available or not.

How manually install OpenCV? ›

Install OpenCV on Windows for Python
  1. Step 1: Install Anaconda for Python 3. Download and install Anaconda Python 3 version from Anaconda's download page. ...
  2. Step 2: Create a Virtual Environment. We will use Virtual Environment to install Python libraries. ...
  3. Step 3: Install OpenCV on Windows. ...
  4. Step 4: Test Installation.
Feb 8, 2021

How do I import cv2 into pip? ›

Show activity on this post.
  1. Open terminal.
  2. Run the following command pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org opencv-python .
  3. Hope it will work.
Aug 15, 2018

Can you pip install OpenCV? ›

To install OpenCV, one must have Python and PIP, preinstalled on their system.

How do I download cv2 in PyCharm? ›

How to Install OpenCV (cv2) on PyCharm?
  1. Open File > Settings > Project from the PyCharm menu.
  2. Select your current project.
  3. Click the Python Interpreter tab within your project tab.
  4. Click the small + symbol to add a new library to the project.

How do I import a cv2 module? ›

How to Verify the OpenCV Installation is Complete?
  1. Open the terminal in your system.
  2. Start the Python shell by typing python3 and then hit enter. You will be inside the Python shell where you can execute your Python code.
  3. Import the cv2 package which is the name of the OpenCV module. Type “import cv2” and hit enter.

Where is OpenCV installed? ›

By default OpenCV will be installed to the /usr/local directory, all files will be copied to following locations: /usr/local/bin - executable files. /usr/local/lib - libraries (. so)

What is cv2 used for? ›

Capturing video using OpenCV

OpenCV has a function to read video, which is cv2. VideoCapture(). We can access our webcam using pass 0 in the function parameter. If you want to capture CCTV footage then we can pass RTSP url in the function parameter, which is really useful for video analysis.

How do I import cv2 code into Visual Studio? ›

OpenCV Python Development in Visual Studio Code | My Setup

How do I get cv2 in PyCharm? ›

How to Install OpenCV (cv2) on PyCharm?
  1. Open File > Settings > Project from the PyCharm menu.
  2. Select your current project.
  3. Click the Python Interpreter tab within your project tab.
  4. Click the small + symbol to add a new library to the project.

How do I import cv2 in Anaconda? ›

Conclusion
  1. Download the OpenCV package from the official OpenCV site.
  2. Copy and paste the cv2. pyd to the Anaconda site-packages directory.
  3. Set user environmental variables so that Anaconda knows where to find the FFMPEG utility.
  4. Do some testing to confirm OpenCV and FFMPEG are now working.

How do I make sure OpenCV is installed? ›

“how to check if opencv is installed” Code Answer's
  1. # in terminal type python3 then the following,
  2. import cv2.
  3. cv2. __version__
Sep 7, 2020

Top Articles
Latest Posts
Article information

Author: Pres. Lawanda Wiegand

Last Updated:

Views: 6198

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Pres. Lawanda Wiegand

Birthday: 1993-01-10

Address: Suite 391 6963 Ullrich Shore, Bellefort, WI 01350-7893

Phone: +6806610432415

Job: Dynamic Manufacturing Assistant

Hobby: amateur radio, Taekwondo, Wood carving, Parkour, Skateboarding, Running, Rafting

Introduction: My name is Pres. Lawanda Wiegand, I am a inquisitive, helpful, glamorous, cheerful, open, clever, innocent person who loves writing and wants to share my knowledge and understanding with you.