Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 506 Bytes

virtualenv.md

File metadata and controls

22 lines (19 loc) · 506 Bytes

Python virtual environment

We recommend using virtualenv details for your python development.

  1. Ensure virtualenv is installed

    pip install virtualenv
  2. Create a virtualenv for your project

    cd $project_home
    virtualenv venv
  3. Activate the environment

    source ./venv/bin/activate
  4. After you're finished, deactivate the environment by running

    deactivate