Imagine the following situation:
I'm working on a python project, and I install the library
antigravity
with pip.I add the function
fly()
which uses the library, and I commit and push the changes.Some time after, my partner(s) run
git pull
.
How do they know that they should install the new library? By failing to run the program? Because I told them so? Should the library install automatically? Is there any easy way of doing that?
For context, in case it's relevant, I'm using python 3 and the project is stored at github. Thanks.
requirements.txt
file.