-1

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.

Jeru Luke
  • 20,118
  • 13
  • 80
  • 87
mooman
  • 3
  • 1

1 Answers1

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