Product SiteDocumentation Site

Chapter 15. Virtualenv

15.1. Installation
15.2. Usage

Virtual Python Environment builder or virtualenv is a tool which will help you to install different versions of python modules in a local directory using which you can develop and test your code without requiring to install everything systemwide.

15.1. Installation

You can install virtualenv ewither from distro provided package or through pip.
[user@host]$ sudo yum install python-virtualenv

Or
$ sudo pip install virtualenv