You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
1 year ago
|
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"
|
||
|
|