Skip to content

Instantly share code, notes, and snippets.

@old-adapdr
Created February 11, 2021 12:18
Show Gist options
  • Save old-adapdr/caba91815811eb95619d83b12335ed1f to your computer and use it in GitHub Desktop.
Save old-adapdr/caba91815811eb95619d83b12335ed1f to your computer and use it in GitHub Desktop.

Useful Python snippets

# Append to venv/bin/activate to load .env variables in VSCode
export $(grep -v '^#' .env | xargs)
# Append to venv/bin/activate to avoid .pyc files
export PYTHONDONTWRITEBYTECODE=1
# Append to ~/.bashrc to fix python 2/3 issues on Linux
source $HOME/.poetry/env
alias poetry="python3 $HOME/.poetry/bin/poetry"
# Append to ~/.bashrc to fix python 2/3 issues on MacOS
alias poetry="python3 $HOME/.poetry/bin/poetry"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment