Skip to content

Instantly share code, notes, and snippets.

@ton77v
Created June 30, 2023 17:40
Show Gist options
  • Save ton77v/cd625ca0b8ee7b4bd3a67791a4fce903 to your computer and use it in GitHub Desktop.
Save ton77v/cd625ca0b8ee7b4bd3a67791a4fce903 to your computer and use it in GitHub Desktop.
shell commands to create/activate venv
# WINDOWS:
python -m venv venv_name
.\venv_name\Scripts\activate
# OS | LINUX:
python -m venv venv_name
source venv_name/bin/activate
# ...
pip install -r requirements.txt
# ...
python -m main
python -m unittest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment