Python replacements for RVM/Bundler/Capistrano
I'm just moving over from Ruby/Rails development to Python/Django and i'm trying to find the best replacements for RVM/Bundler/Capistrano but it seems to be a total mess?
I've found these so far:
- pythonbrew
- virtualenv
envwrapper
pip
- easyinstall
- setuptools
For capistrano I've found Fabric which seems t开发者_StackOverflowo fit fairly well?
I've found some articles describing how to set up virtualenv/pip/fabric but it seems everyone is moving over to pythonbrew? Which ones should i pick? Also it seems pip/virtualenv is integrated fairly well but if pythonbrew is a better choice?
I have used pip/virtualenv/fabric extensively and am happy with it. You can't go wrong with this choice.
I haven't used pythonbrew however, so I can't do any relative comparison.
pip is 'the' tool for Python packages, replacing easy_install. Most people are using virtualenv for multiple python environments.
精彩评论