diff options
author | zsloan | 2022-01-28 14:53:53 -0600 |
---|---|---|
committer | GitHub | 2022-01-28 14:53:53 -0600 |
commit | b9f16a3b28c4d996ac91befa5a919a9e0a7ac981 (patch) | |
tree | fb146baa5a9ce526170d58d404b3f91c514a1a10 /bin | |
parent | 631504680ce31b1a181cf6617e87ef0cc2cefa26 (diff) | |
download | genenetwork2-b9f16a3b28c4d996ac91befa5a919a9e0a7ac981.tar.gz |
Update PYTHONPATH
The PYTHONPATH apparently needs to be updated to 3.9, because 3.8 throws an error (at least on production).
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/genenetwork2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/genenetwork2 b/bin/genenetwork2 index ea70835b..1d645c23 100755 --- a/bin/genenetwork2 +++ b/bin/genenetwork2 @@ -114,7 +114,7 @@ if [ -z $GN2_PROFILE ]; then read -p "PRESS [ENTER] TO CONTINUE..." else export PATH=$GN2_PROFILE/bin:$PATH - export PYTHONPATH="$GN2_PROFILE/lib/python3.8/site-packages" # never inject another PYTHONPATH!! + export PYTHONPATH="$GN2_PROFILE/lib/python3.9/site-packages" # never inject another PYTHONPATH!! export R_LIBS_SITE=$GN2_PROFILE/site-library export JS_GUIX_PATH=$GN2_PROFILE/share/genenetwork2/javascript export GUIX_GTK3_PATH="$GN2_PROFILE/lib/gtk-3.0" |