Skip to content

Instantly share code, notes, and snippets.

@uxDaniel
Last active June 7, 2023 05:54
Show Gist options
  • Save uxDaniel/0f8f338c85252fdb23f07c024b1b62e1 to your computer and use it in GitHub Desktop.
Save uxDaniel/0f8f338c85252fdb23f07c024b1b62e1 to your computer and use it in GitHub Desktop.

virtualenvs in python 3

  • creates a virtualenv

    python3 -m venv venv

  • activates the virtualenv

    source venv/bin/activate

  • deactivate the virtualenv

    deactivate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment