Skip to content

Instantly share code, notes, and snippets.

@jabbalaci
Created October 3, 2022 17:44
Show Gist options
  • Save jabbalaci/410b818dc209edf3561322b06fab70aa to your computer and use it in GitHub Desktop.
Save jabbalaci/410b818dc209edf3561322b06fab70aa to your computer and use it in GitHub Desktop.
001a - Python virtuális környezetek
# aliases for the video https://www.youtube.com/watch?v=ETLb4moY4Rc
alias venv_init="python3 -m venv .venv"
alias venv_freeze="pip freeze --local"
alias on="deactivate 2>/dev/null; source .venv/bin/activate"
# alias on="source .venv/bin/activate"
alias off="deactivate"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment