From a8c0602e7e3bd81cd5d3d90a443bf8f8b9bee516 Mon Sep 17 00:00:00 2001 From: Andrey Golovizin Date: Tue, 10 Mar 2020 20:53:00 +0100 Subject: [PATCH] Install pip in venv --- .envrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.envrc b/.envrc index da18424..095d31a 100644 --- a/.envrc +++ b/.envrc @@ -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"