I'm relatively new to python and am wanting to try and get cv2 to work I've imported it via command prompt using """ pip install opencv-python """ from what I can tell it was successful whenever I try to do it again it says that "requirement already satisfied" however when I go into pycharm and try to do anything with it I get a modulenotfound error once again I'm super new to this but eager to learn so I hope y'all wont tear me to shreds any advice is appreciated.
Asked
Active
Viewed 38 times
1 Answers
0
This might help you to install a package inside PyCharm: https://www.jetbrains.com/help/pycharm/installing-uninstalling-and-upgrading-packages.html
It's possible that you are using a different interpreter than the one you installed the package at. If not, reloading it should resolve the issue.
If you want to change the interpreter: https://www.jetbrains.com/help/pycharm/configuring-python-interpreter.html

Mahrkeenerh
- 1,104
- 1
- 9
- 25
-
thank you so much this has fixed my problem! – mooman Oct 05 '21 at 20:12
-
1the question was determined to be a duplicate of another question that already has good answers. – Christoph Rackwitz Oct 07 '21 at 21:53
-
in that case, should I remove my answer? – Mahrkeenerh Oct 08 '21 at 05:41