Forrest logo
back to context overview

virtualenv

List of commands for virtualenv:

  • virtualenv:tldr:071ca virtualenv: Customize the prompt prefix.
    $ virtualenv --prompt=${prompt_prefix} ${path-to-venv}
    try on your machine
    explain this command
  • virtualenv:tldr:5e21b virtualenv: Use a different version of Python with virtualenv.
    $ virtualenv --python=${path-to-pythonbin} ${path-to-venv}
    try on your machine
    explain this command
  • virtualenv:tldr:87944 virtualenv: Create a new environment.
    $ virtualenv ${path-to-venv}
    try on your machine
    explain this command
back to context overview