How to list in Python project all libraries and their version?
(similar to Java maven pom.xml
and Node.js npm 'package.json')
There is definitely way to specify that on command line,
e.g. pip install pandas==0.23
, but that only hopefully will be listed in README, but most likely be forgotten.
Also as there is pip
and conda
, do they address this? Or maybe some other 3rd tool tries to unify for whatever pip or conda usage?