What is the Python equivalent of Perlbrew?

Is there a Python Perlbrew equivalent?

Ideally, this “equivalent” would have at least the following two functions:

  • Allow the use of several installations installed in Python, that is, install, list, enable ...,

  • Allow the installation of non-core Python modules for specific Python installations, as in the combination of perlbrew, and say cpanminus

Thanks ☺

+6
source share
2 answers

I will say virtualenv

https://pypi.python.org/pypi/virtualenv/

It seems to be the same, and you are using pip to install your packages in your python virtual environments.

+8
source

Pythonbrew - Inspired by perlbrew. Similar functionality

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

+3
source

Source: https://habr.com/ru/post/900988/


All Articles