Setting your Python Search Path

 
 
 

To use Python with Showcase you will have to tell it where to look for imported modules. This can be done in one of two ways:

  1. Set the variable PYTHONPATH in your environment before you run Showcase.
  2. Append to sys.path in your userSetup.py or other script once Showcase is running.

Here is an example of appending sys.path:

  import sys    sys.path.append( '/Users/jdoe/Showcase/Scripts' )