git pull [email protected]:<<something>>.git
mkdir .venv
python3 --version # check if the correct version is getting invoked.
python3 -m venv .venv
source .venv/bin/activate
which python3
pip install xyz
codium .
create .gitignore
Add /.venv to .gitignore # or else you will have 100s of files to check into git.
which pip3
pip3 install
Last active
August 17, 2024 20:28
-
-
Save kaunjovi/774cbd0ae896a7e5bc31b96f119fc736 to your computer and use it in GitHub Desktop.
venv cheat sheet
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment