Python Forum

Full Version: pycharm cannt find dlib which is installed
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I used "pip show dlib" and it shows the information of the dlib which I installed. However, when I used "import dlib" in pycharm, it shows "No Module named dlib". I installed python 3.7.4. what should I do ?
By any chance do you have more than one python installation/virtual environment? Obvously it is installed in a different python than the one used to run your script
(Oct-15-2019, 03:53 AM)buran Wrote: [ -> ]By any chance do you have more than one python installation/virtual environment? Obvously it is installed in a different python than the one used to run your script

thank you ,I solved this problem. I installed python 2.7 on my computer, but I deleted it and changed to python3.7 later. I made some changes to my PYcharm settings and solved this problem.