Virtual Environment

Installation

  • pip install virtualenv |OR| pip install virtualenvwrapper-win

Make a virtual environment

  • mkvirtualenv test (Globally name 'test' created)
  • virtualenv test (Locally name 'test' created)

Activate 'test'

  • workon test (For globally)
  • test\scripts\activate (For Locally)

Deactivate 'test'

  • deactivate (For All)