I came from Java and brand new in Python.
Now I have a small project with several Python files that contain several imports. I know that the imported dependencies are not installed on my computer, so I try to find out the necessary dependencies and run pip to install them.
I would like to do it differently. I would prefer the dependencies to be listed in a single file and installed automatically during the build process.
Does this make sense? If so, I have a few questions:
- How to list the project dependencies needed to install
pip ? - How to run
pip to install dependencies from a list?
python pip dependency-management
Michael
source share