1
0

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.
This commit is contained in:
SomberNight
2022-03-11 14:17:38 +01:00
parent a65b97d25c
commit e454a06e80

View File

@@ -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 "$@"