[Paraview] Import error with programmable filter

2013-02-25 Thread Colin McAuliffe
Hello all, I am trying to use the programmable filter in a python script, but it is not able to find the paraview module. the code: ProgrammableFilter1 = ProgrammableFilter() ProgrammableFilter1.Script = 'print "something"' Show() gives the error: Traceback (most recent call last): Fi

Re: [Paraview] Import error with programmable filter

2013-02-25 Thread Pat Marion
I forgot to cc the mailing list. On Tue, Feb 26, 2013 at 8:42 AM, Pat Marion wrote: > The programmable filter will run in the same process, using the same > python, as the main script. But, it's possible something is not working > right with the paths. I would put a print statement in both the

Re: [Paraview] Import error with programmable filter

2013-02-25 Thread Colin McAuliffe
I can get the path for the main script but not for the programmable filter because of the import error. There is /Applications/ParaView.app/Contents/Python /Applications/ParaView.app/Contents/Libraries /Applications/ParaView.app/Contents/bin in the path for the main script. Is there anything

Re: [Paraview] Import error with programmable filter

2013-02-25 Thread Pat Marion
Could you try running this test script with pvpython like this: $ cat test.py from paraview.simple import * f = ProgrammableSource() f.Script = 'print "something"' f.UpdatePipeline() $ /Applications/paraview.app/Contents/bin/pvpython test.py something Does that work? Pat On Tue, Feb 26, 2013

Re: [Paraview] Import error with programmable filter

2013-02-25 Thread Colin McAuliffe
This works, the difference is if I run /Applications/paraview.app/Contents/bin/pvpython test.py it works but pvpython test.py gives the import error and the same is true of my other script. I guess there is something wrong with my pvpython environmental variable. Thanks for the help! Colin