System Grab Bag

View all TLDR pages from common (or from all pages)

virtualenv

Create virtual isolated Python environments. More information: https://virtualenv.pypa.io/.
  • Create a new environment:
    virtualenv {{path/to/venv}}
  • Customize the prompt prefix:
    virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}
  • Use a different version of Python with virtualenv:
    virtualenv --python={{path/to/pythonbin}} {{path/to/venv}}
  • Start (select) the environment:
    source {{path/to/venv}}/bin/activate
  • Stop the environment:
    deactivate

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.