##// END OF EJS Templates
Force PySide2 usage for QtConsole...
Force PySide2 usage for QtConsole Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1447:e5aec154e474
r1503:3d021c06fb3c
Show More
AppRun
13 lines | 484 B | text/plain | TextLexer
AppImage Python test...
r1445 #!/bin/bash
HERE="$(dirname "$(readlink -f "${0}")")"
echo ${HERE}
export PREFIX=$HERE/usr
export LD_LIBRARY_PATH=$HERE/usr/lib
export PYTHONHOME=$HERE/usr
export PYTHONPATH=$HERE/usr/lib/python3.6/:$HERE/usr/lib/python3.6/site-packages
export QT_QPA_PLATFORM_PLUGIN_PATH=$HERE/usr/plugins
export QT_XKB_CONFIG_ROOT=$HERE/usr/lib
export FONTCONFIG_FILE=/etc/fonts/fonts.conf
export FONTCONFIG_PATH=/etc/fonts
AppImage should build and run now...
r1447 LD_PRELOAD=${HERE}/usr/lib/libpython3.7m.so ${HERE}/usr/bin/sciqlop "$@"
AppImage Python test...
r1445