From c94ef0379a22888c303eeee161e7d5995c7f2c0e Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 21 Jan 2024 12:57:32 +0000 Subject: [PATCH] Update `pip` and `setuptools` in scripts/initenv.sh This is to support Debian 11 which ships setuptools that do not support `-e` without setup.py --- scripts/initenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/initenv.sh b/scripts/initenv.sh index dba5848..a9169e7 100755 --- a/scripts/initenv.sh +++ b/scripts/initenv.sh @@ -1,6 +1,6 @@ #!/bin/bash set -e -python3 -m venv venv +python3 -m venv --upgrade-deps venv venv/bin/pip install -e chatmaild venv/bin/pip install -e cmdeploy