Created
October 3, 2022 17:44
-
-
Save jabbalaci/410b818dc209edf3561322b06fab70aa to your computer and use it in GitHub Desktop.
001a - Python virtuális környezetek
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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