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.
15 lines
337 B
15 lines
337 B
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" |
|
|
|
|