How to Install virtualenv in Ubuntu 18.04



Install virtualenv by entering the following commands in the terminal:

sudo apt update
sudo apt install virtualenv

Description:

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 command line script and manpage.

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

Version: 15.1.0+ds-1.1

Section: universe/python