Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ImportError: DLL load failed while importing cv2: The specified module could not be found. #976

Open
NajetMed opened this issue Apr 26, 2024 · 4 comments

Comments

@NajetMed
Copy link

Expected behaviour

I'am trying to run a cod about document classification and I got this error i try to install the library via Anaconda but doesn't exist.
import pandas as pd
import numpy as np
import tensorflow as tf
import string
import nltk
import pathlib
import os
import cv2
import matplotlib.pyplot as plt
from tensorflow.keras.utils import to_categorical
from tensorflow.keras.metrics import TruePositives, FalsePositives, TrueNegatives, FalseNegatives, BinaryAccuracy, Precision, Recall, AUC

@imSanko
Copy link

imSanko commented Apr 28, 2024

Install OpenCV using Anaconda:

  • Open the Anaconda Prompt or Anaconda PowerShell.
  • Run the following command to create a new virtual environment (replace env_name with the desired name for your environment):

If the installation is successful, you should be able to import the cv2 module without any issues.

  1. Install OpenCV using pip:
    If the Anaconda approach doesn't work, you can try installing OpenCV using pip.

    pip install opencv-python
    

This command will install OpenCV and its dependencies using pip.

  1. Check the installation path:
    If you have multiple Python installations or environments on your system, make sure that you are importing the cv2 module from the correct environment or installation path.

  2. Try Reinstall OpenCV:
    If the above steps don't work, you can try uninstalling and reinstalling OpenCV.

@asmorkalov
Copy link
Collaborator

OpenCV team does not maintain Anacoda packages, pip packages only. Looks like your OpenCV installation is not complete or broken. You can trace OpenCV loading process by setting sys.OpenCV_LOADER_DEBUG = 1 before the library import.

@AlexAtom022
Copy link

I was facing the same issue. I have python 3.11.7 with opencv 4.9.0. It was working fine until I started working with opencv and C++ in visual studio, which caused this problem. I don't know how the problem occurred, but it prevented me from working with python. I uninstalled visual studio and tried again, but the problem persisted. I resolved the issue by following these steps:

  • Check for Visual C++ Redistributable 2015 : Ensure it is installed on your system.
  • Check for Windows Media Feature Pack : Make sure it is installed, as it is essential for opencv.

if the above requirements are satisfied but the issue still persists, try reinstalling the opencv package:

pip uninstall opencv-python 

delete the cv2 folder inside the location where you installed python packages\Lib\site-packages\cv2
reinstall opencv using pip :

pip install opencv-python 

this method worked for me
if it doesn't work for you, refer to this: #36
this might help you

@Avasam
Copy link

Avasam commented Aug 1, 2024

OpenCV team does not maintain Anacoda packages, pip packages only. Looks like your OpenCV installation is not complete or broken. You can trace OpenCV loading process by setting sys.OpenCV_LOADER_DEBUG = 1 before the library import.

Also likely a duplicate of either #771 and/or #856

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants