From a1c94634fcd6ef6b7bbc1c73f56a5625521e4ad4 Mon Sep 17 00:00:00 2001 From: Konstantinos Kallas Date: Sat, 18 Jun 2022 17:30:14 -0400 Subject: [PATCH] Append to pythonpath instead of setting it Signed-off-by: Konstantinos Kallas --- pa.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pa.sh b/pa.sh index 50ab34632..03862c5c2 100755 --- a/pa.sh +++ b/pa.sh @@ -3,7 +3,7 @@ export PASH_TOP=${PASH_TOP:-${BASH_SOURCE%/*}} export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/" # point to the local downloaded folders -export PYTHONPATH=${PASH_TOP}/python_pkgs/ +export PYTHONPATH="${PASH_TOP}/python_pkgs/:${PYTHONPATH}" ## Register the signal handlers, we can add more signals here trap kill_all SIGTERM SIGINT