Python packages and commands
Managing Virtual Envrionments
Create a new venv python3 -m venv /path/to/new/virtual/environment
Activate the new venv Linux / Mac source myenv/bin/activate
Activate an envrionment on windows myenv\Scripts\activate
Exit the venv deactivate
Installing and uninstalling packages
Installing a package pip install xyz
Uninstalling a package pip uninstall xyz
Useful packages
- aqlalchemy - SQL Alchemy
- snowflake-sqlalchemy - SQL Alchemy for snowflake