I Have Trouble With Interpreter In Pycharm
I am python newbie. I am doing 1 project testing of Keras. I already installed opencv by pip install opencv-python but i can't find opencv in interpreter of Pycharm and have an err
Solution 1:
Go to project interpreter settings in preferences in Pycharm, and use the + sign there to add the module to your interpreter.
This can happen when pip is installing to a directory that is not part of your project's python interpreter's PATH.
Installing via the Pycharm preferences menu always solves for me, although there is a deeper issue of pip not installing to the correct directory...
Post a Comment for "I Have Trouble With Interpreter In Pycharm"