From 2607b5ff8a216a7090a4524c2b79df527d650946 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 26 Jul 2024 11:14:48 +0100 Subject: [PATCH] Change which python is used in envrc python template --- templates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates b/templates index c2f09a0..e38fe34 100644 --- a/templates +++ b/templates @@ -210,7 +210,7 @@ envrc-file-mode "export LD_LIBRARY_PATH=\"$CC/lib\":\"$ZLIB/lib\"" n "VENV_DIR=.venv/" n "if [ ! -f $VENV_DIR/bin/python3 ]; then" n - > "nix run nixpkgs#python3Full -- -m venv $VENV_DIR" n + > "python3 -m venv $VENV_DIR" n "fi" n "source $VENV_DIR/bin/activate")