On the Mac terminal sessions don't seem to retain the same environment as the one that parses their .bashrc files. So, to overcome that, all aliases and PATH/variable changes are done in .profile (or files sourced by .profile). There aren't any .profiles checked in yet, but stay tuned ;-)
4 lines
112 B
Bash
4 lines
112 B
Bash
# Python
|
|
alias mk-venv='python -m venv .venv'
|
|
alias do-venv='. .venv/bin/activate'
|
|
alias rm-venv='rm -rf .venv'
|