Install pip in venv

This commit is contained in:
Andrey Golovizin 2020-03-10 20:53:00 +01:00
parent 41525d558b
commit a8c0602e7e

2
.envrc
View file

@ -9,7 +9,7 @@ fi
VIRTUAL_ENV="$PWD/venv"
if [ ! -e venv ]
then
python -m venv --system-site-packages --without-pip "${VIRTUAL_ENV}"
python -m venv --system-site-packages "${VIRTUAL_ENV}"
fi
export VIRTUAL_ENV
PATH_add "$VIRTUAL_ENV/bin"