You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate new SSH key for github ssh-keygen -t ed25519
Retrieve public key with the following command .ssh/{public_key}
Add public key to Guthub and give permissions for repo access
Confirm successful connection with the following command ssh git@github.com
Create a new virtual environment
Create virtual environment using python - python3 -m venv {environment_name}
Start/Stop an existing virtual environment
Activate the environment using source {environment_name}/bin/activate
Deactivate the environment with deactivate