python: what's the difference between pythonbrew and virtualenv?

前端 未结 5 1466
误落风尘
误落风尘 2021-01-31 15:40

I am new to python and I am planning to learn django. I had a bit of experience with ruby (not rails) and I am familiar with RVM however I don\'t understand the

5条回答
  •  梦毁少年i
    2021-01-31 16:04

    Python brew is for building and install, maybe like some buildbot. I'm not so familiar. Virtualenv is mainly for, when you got different version of python, or you wan to try some package without disturbing on-system version.


    Ok, this revels something

    Create isolated python environments (uses virtualenv):

    pythonbrew venv init
    pythonbrew venv create proj
    pythonbrew venv list
    pythonbrew venv use proj
    pythonbrew venv delete proj
    

    From http://pypi.python.org/pypi/pythonbrew/

提交回复
热议问题