Update conda env creation to python 3.7, add classic package install

This commit is contained in:
Loïc Gremaud 2020-08-21 18:56:35 +02:00
parent c1c327187e
commit 2ef14f2c78
Signed by: Legrems
GPG Key ID: D4620E6DF3E0121D

View File

@ -17,7 +17,7 @@ rs() {python manage.py runserver 127.0.0."$1":"$2"}
cheat() { curl cheat.sh/"$1" }
cda() { conda activate "$@" }
cdd() { conda deactivate "$@" }
cdc() { conda create --name "$@" python=3.6 pip }
cdc() { conda create --name "$@" python=3.7 pip ipython memory_profiler django-extensions psycopg2 pre-commit black isort }
cdi() { conda info --envs "$@" }
ca() { pygmentize -g "$@" }
grepf() { grep -rnw ./ -e "$@"}