16 lines
337 B
Plaintext
16 lines
337 B
Plaintext
export PYENVDIR=~/.pyenvs
|
|
|
|
alias actvenv="source .venv/bin/activate"
|
|
|
|
npyenv () {
|
|
pythonversion=$2
|
|
python${pythonversion:=3.10} -m venv $PYENVDIR/$1
|
|
ln -s $PYENVDIR/$1 .venv
|
|
actvenv
|
|
}
|
|
|
|
|
|
alias pygr="source ~/.pyenvs/playground/bin/activate"
|
|
alias newds="cookiecutter -c v1 https://git.lgoon.xyz/gabriel/my-datascience-cookiecutter"
|
|
|