Installing dependencies only - setuptools
问题 I have a Python script, with several external dependencies, that I wish to distribute to colleagues. However, we will need to modify this script regularly so I don't want to install it per-se (i.e. copy to site-packages ). From what I've seen setuptools seems to do this implicitly. Is there a recommended approach to installing dependencies without installing the application/script itself? 回答1: You probably want to make sure that you and your colleagues use the same dependencies during