virtualenv-2.7
virtualenv is a tool to create isolated Python environments.
Install
- All systems
-
curl cmd.cat/virtualenv-2.7.sh
- Debian
-
apt-get install python-virtualenv
- Ubuntu
-
apt-get install python-virtualenv
- Arch Linux
-
pacman -S python-virtualenv
- Kali Linux
-
apt-get install python-virtualenv
- CentOS
-
yum install python-virtualenv
- Fedora
-
dnf install python2-virtualenv
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install python-virtualenv
- Raspbian
-
apt-get install python-virtualenv
- Dockerfile
- dockerfile.run/virtualenv-2.7
python2-virtualenv
virtualenv is a tool to create isolated Python environments.
virtualenv is a successor to workingenv, and an extension of virtual-python. It is written by Ian Bicking, and sponsored by the Open Planning Project. It is licensed under an MIT-style permissive license
python-virtualenv
Python virtual environment creator
The virtualenv utility creates virtual Python instances, each invokable with its own Python executable. Each instance can have different sets of modules, installable via easy_install. Virtual Python instances can also be created without root access. This is the Python 2 version of the library.