I have a script that runs pip install -r requirements.txt -t folder
and executes scripts in "folder" for me.
Every time I run it pip install
runs, collects all the packages and installs them with setup.py. It looks like it's not making any changes for packages that are already there and up to date but it still takes a while to collect them and run setup.py for each one. Often I'm not modifying the packages.
How can I have it skip ones that are already there? is there a way to speed this up apart from just not running pip install
every time?