From a0b48838d27ea02d277ae573b43d6ecb6607ac56 Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Wed, 21 Jun 2017 16:46:12 +0000 Subject: [PATCH] Use system libs when creating the venv --- .bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index 448b644..275e062 100644 --- a/.bashrc +++ b/.bashrc @@ -212,7 +212,7 @@ vactivate() { local path=~/.venv/$1 if [[ ! -d $path ]]; then - python -m venv $path --prompt "venv: $1" + python -m venv --prompt "venv: $1" --system-site-packages $path fi source $path/bin/activate; bash; deactivate }