Reputation: 109
Is there an equivalent to maven/ivy dependency management for python? I mean, something that will automatically download all my dependencies based on a simple specification (as is done for java ) ?
Thanks.
Upvotes: 6
Views: 1555
Reputation: 15808
I know about Pip, that uses a very simple text format for requirements specification.
Upvotes: 0
Reputation: 526653
http://www.pip-installer.org/en/latest/index.html (Requirements files)
Upvotes: 3