0

I’ve done the step of installing opencv-python through pip I’ve also pip3 installed opencv-python, my pycharm continues to read no cv2 information available. Any help?

  • Have you installed it in your virtual env (if you are using one)? – Abhigyan Jaiswal Nov 19 '20 at 23:01
  • Do you have the correct run-time environment defined in your PyCharm Settings (File --> Settings --> Project: XXX --> Python Interpreter)? – Jacob K Nov 19 '20 at 23:07
  • Yes, In python interpreter I have opencv-python installed when entering cv2 to install the description reads: No information available. – George Burbano Nov 20 '20 at 00:11
  • See [this post](https://stackoverflow.com/a/52553043) and [this post](https://stackoverflow.com/questions/22288569) on how to create a venv using Python's GUI. If you google it JetBrains has a thorough tutorial on using pip to install anything. – bad_coder Nov 20 '20 at 04:15

1 Answers1

2

First thing I would check is the interpreter being used by pycharm. If, for example, your pycharm is set up to use a virtual environment but you manually installed opencv-python through the command line they may not be sharing those libraries.

Dharman
  • 26,923
  • 21
  • 73
  • 125
Trevor K
  • 145
  • 5