Reputation: 3508
I was getting this warning automatically Package requirements ....
& things were working fine when I was clicking on the Install requirements
RECENTLY, I clicked on Ignore requirements
by mistake. And this automatic check does NOT happen anymore. I am having a hard time trying to figure where I should enable it on PyCharm.
I am currently doing it with pip
on terminal. Any help here to enable this will be nice.
Looking forward to the comments/answer-help.
Upvotes: 1
Views: 912
Reputation: 26442
Goto File > Settings > Tools > Python Integrated Tools
set your requirements file with the Package requirements file:
input box.
now navigate to Editor > Inspections
on the search box, search for requirements, check the checkbox next to Package requirements.
To manage dependencies with PyCharm, you can go to
settings > project > project interpreter
, select your interpreter from the drop down menu
click on the green +
button to open the package list/install dialog. select the version from the specify version drop down and click install package
.
Upvotes: 2