From e454a06e802805663006b49dff3242c1be22c4f3 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 11 Mar 2022 14:17:38 +0100 Subject: [PATCH] electrum-env script: don't pull in "pip install --user" pkgs apt-get/pacman installed stuff such as PyQt5 are nice to detect (instead of installing it via pip inside the venv), however it is probably better to isolate the venv from the ~global pip. --- electrum-env | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electrum-env b/electrum-env index 163961546..d70dfde62 100755 --- a/electrum-env +++ b/electrum-env @@ -32,8 +32,7 @@ export PYTHONPATH="$PYTHONPATH:"\ "/usr/local/lib/python${PYTHON_VER}/site-packages:"\ "/usr/local/lib/python${PYTHON_VER}/dist-packages:"\ "/usr/lib/python3/dist-packages:"\ -"/usr/lib/python${PYTHON_VER}/site-packages:"\ -"${HOME}/.local/lib/python${PYTHON_VER}/site-packages" +"/usr/lib/python${PYTHON_VER}/site-packages:" ./run_electrum "$@"