Skip to content

Instantly share code, notes, and snippets.

@yuchdev
Created July 10, 2022 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuchdev/93658e6af9e0fa03f9c31b948e13eacd to your computer and use it in GitHub Desktop.
Save yuchdev/93658e6af9e0fa03f9c31b948e13eacd to your computer and use it in GitHub Desktop.
Create venv
#!/bin/bash
# Install
pip3 install --user virtualenv
virtualenv –version
# Activate
virtualenv venv
source venv/bin/activate
# Deactivate
deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment