Created
June 30, 2023 17:40
-
-
Save ton77v/cd625ca0b8ee7b4bd3a67791a4fce903 to your computer and use it in GitHub Desktop.
shell commands to create/activate venv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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