Atpug627
Atpug627

Reputation: 23

Opencv-python install error :Could not find a version that satisfies the requirement opencv (from versions: none)

I have installed opencv-python but whenever I try to check that opencv-python is installed or not so it is showing me this

```ERROR: Could not find a version that satisfies the requirement opencv (from versions: none)   
   ERROR: No matching distribution found for opencv```

so I try to install it again so what I am getting is

Requirement already satisfied: opencv-python in c:\users\hp\appdata\local\programs\python\python39\lib\site-packages (4.5.2.52)
Requirement already satisfied: numpy>=1.19.3 in c:\users\hp\appdata\local\programs\python\python39\lib\site-packages (from opencv-python) (1.20.3)```

can anyone please explain what is the issue?

Upvotes: 0

Views: 1931

Answers (1)

Carson Coder
Carson Coder

Reputation: 39

Requirement already satisfied: opencv-python in c:\users\hp\appdata\local\programs\python\python39\lib\site-packages (4.5.2.52)
Requirement already satisfied: numpy>=1.19.3 in c:\users\hp\appdata\local\programs\python\python39\lib\site-packages (from opencv-python) (1.20.3)

that means it is installed

Upvotes: 1

Related Questions