How can I force PyCharm to inspect the requirements.txt file and suggest updates? I can't seem to control when this happens. Thanks!
Project dependencies pane For each project in the Projects pane, this pane shows the list of the other projects, opened in the same window. Select the checkboxes to the left of the names of the desired projects to add them as dependencies.
txt, you can use the "Sync Python Requirements" tool (under the Tools menu) to find and remove unused packages (check the "Remove unused requirements" box).
I tried opening any .py file, checking Package requirements file field (Settings - Tools - Python Integrated Tools). Nothing triggered my PyCharm on Windows to detect a new dependency added to requirements.txt
. Since the virtual environment was created with PyCharm's Add Local
, trying to get pip
to work for the virtual environment with a Windows command line also seemed quite a bit of work.
Finally, the easiest solution that worked for me was as follows.
Click on the icon in the lower left corner. It brings up menus to Project
, Python Console
, Structure
, TODO
, etc. Find Terminal
in it.
Click on Terminal
. It seems to be automatically virtual environment aware.
pip install -r requirements.txt
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With