Skip to content
Snippets Groups Projects
Commit d7d0beb2 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Was it this simple all along? Explicitly setting libraryt path before

OpenGL is imported. I still seem to need to restart though ..
parent b6769411
No related branches found
No related tags found
No related merge requests found
......@@ -12,12 +12,9 @@ See:
- :mod:`fsl.fsleyes.fsleyes_parseargs`
"""
#
# TODO Separate out lightbox/ortho canvas layout and option configuration.
#
import os
import os.path as op
import sys
import logging
......@@ -310,6 +307,14 @@ def run(args, context):
fsl.runTool('render', argv, env=env)
sys.exit(0)
# Make sure that FSL_OSMESA_PATH is definitely on the
# library path before OpenGL is imported (which occurs
# in fskl.fsleyes.gl) - pyinstaller clears the
# DYLD_LIBRARY_PATH env var before running a compiled
# script, so our above restart is useless.
os.environ[_LD_LIBRARY_PATH] = os.environ.get(_LD_LIBRARY_PATH, '') + \
op.pathsep + env['FSL_OSMESA_PATH']
import fsl.fsleyes.gl as fslgl
import fsl.fsleyes.gl.osmesaslicecanvas as slicecanvas
import fsl.fsleyes.gl.osmesalightboxcanvas as lightboxcanvas
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment