The CVS version in linux seg faults when trying to launch this simple stereo startup script. I get this on two very different linux distros and dependency versions.

#!/usr/bin/env python

# Tell PyMOL we don't want any GUI features.

import __main__
__main__.pymol_argv = [ 'pymol', '-Gi' ]

# Importing the PyMOL module will create the window.

import pymol

# Call the function below before using any PyMOL modules.

pymol.finish_launching()

from pymol import cmd

cmd.stereo('walleye')
cmd.set('stereo_shift', 0.23)
cmd.set('stereo_angle', 1.0)

Reply via email to