Is There A Project File Support Like Npm/package.json For Python's Pip?
I just started working on a project where I needed to install a lot of dependencies via pip. The instructions were to do everything manually. I've used nodejs and maven before wher
Solution 1:
Check out anaconda. You can create lists of dependencies/packages and pass them to conda. Conda has most packages already, and will have everything soon. You can run pip through anaconda in case anaconda doesn't have the package you're looking for. Anaconda is great for both package and python version/environment management. Conda is the future!
Post a Comment for "Is There A Project File Support Like Npm/package.json For Python's Pip?"