Browse Source

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.
master
SomberNight 4 years ago
parent
commit
e454a06e80
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 3
      electrum-env

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

Loading…
Cancel
Save