Re: [Paraview] paraview.simple

2017-08-23 Thread Cory Quammen
> The problem results when executing the python script from the Ubuntu's > terminal. What command are you using to run the Python script? Thanks, Cory > Thank you very much. > > ASAP I will try to install the v5.3 and I will let you know if I encounter > any problem. > > Cheers, > > Guillermo >

Re: [Paraview] paraview.simple

2017-08-23 Thread Guillermo
Hi Cory, It works perfectly. I can use paraview 5.3 version without any problem (I can use it as I normally do). The problem results when executing the python script from the Ubuntu's terminal. Thank you very much. ASAP I will try to install the v5.3 and I will let you know if I

Re: [Paraview] paraview.simple

2017-08-23 Thread Cory Quammen
Guillermo, I'm sorry that my suggestions didn't work out. Could you try one last thing? Please run the following commands: cd /opt/ParaView-5.3.0-Qt5-OpenGL2-MPI-Linux-64bit/bin ./paraview That should work without problem. If it doesn't, we definitely have a problem. Cheers, Cory On Wed, Aug

Re: [Paraview] paraview.simple

2017-08-23 Thread Guillermo
Hi Cory, I have made a purge of paraview, reinstalled the 5.3 version, as I indicated on the first email, but the result is the same, it does not work and the message is the same as in the beginning. Also, the libs you indicated to me are not present. Actually, I really need to use this

Re: [Paraview] paraview.simple

2017-08-22 Thread Guillermo
Hi, I noticed that I do not have the file libvtkCommonCorePython27 nor libvtkCommonCorePython. However, I have the files libvtkCommonColorPython27D-pv5.3.so and libvtkCommonColorPython27D-pv5.3.so.1. I have already tried to execute my script following your instructions but it did not work.

Re: [Paraview] paraview.simple

2017-08-22 Thread Cory Quammen
Oops, I failed to change the version number in the line I gave you, but caught that and corrected it, just not quite to the right version number. Try export PYTHONPATH=$PYTHONPATH:/opt/ParaView-5.3.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/paraview-5.3 Basically, you have to set the PYTHONPATH to

Re: [Paraview] paraview.simple

2017-08-22 Thread Guillermo
I forgot to mention that the error message is the same as before. On 22/08/17 13:24, Cory Quammen wrote: Guillermo, Please CC the mailing list so others can participate and learn from the discussion. That looks like progress. Now try adding to your .bashrc: export

Re: [Paraview] paraview.simple

2017-08-22 Thread Guillermo
Hi Cory, I just copied and pasted that sentence on my .bashrc but it doesn't work. Also I have tried typing .../paraview-5.3.0 but neither works. Thanks, Guillermo On 22/08/17 13:24, Cory Quammen wrote: Guillermo, Please CC the mailing list so others can participate and learn from the

Re: [Paraview] paraview.simple

2017-08-22 Thread Cory Quammen
Guillermo, Please CC the mailing list so others can participate and learn from the discussion. That looks like progress. Now try adding to your .bashrc: export PYTHONPATH=$PYTHONPATH:/opt/ParaView-5.3.0-Qt5-OpenGL2-MPI-Linux-64bit/lib/paraview-5.4 HTH, Cory On Tue, Aug 22, 2017 at 10:19 AM,

[Paraview] paraview.simple

2017-08-22 Thread Guillermo Suárez
Dear all, Yesterday I installed paraview v5.3 using the binaries from the website on my Linux (ubuntu) OS. The steps followed are (they my influence on the final result): 1. Download the binaries from http://www.paraview.org. For me this results in:

[Paraview] paraview.simple and generic python

2014-02-07 Thread Scott, W Alan
I have a user that wants to use ParaView from within generic python (not pvpython). Unfortunately, I am somewhat struggling. Does anyone have any ideas? I am running the version of Python that was used to build ParaView (i.e., probably no version mismatch). setenv LD_LIBRARY_PATH

Re: [Paraview] paraview.simple and generic python

2014-02-07 Thread Patrick O'Leary
Dear Alan, Sebastien recently posted this: import sys pv_path = '/Users/seb/work/code/ParaView/build-ninja' sys.path.append('%s/lib' % pv_path) sys.path.append('%s/lib/site-packages' % pv_path) from paraview.simple import * Where pv_path is the path to the ParaView build. This seems to work

Re: [Paraview] paraview.simple documentation

2010-10-27 Thread John Haiducek
Thanks! I was hoping it was out there in HTML format somewhere (probably I could generate that myself from the python sources), but help(paraview.simple) gets me the information I need. On Wed, Oct 27, 2010 at 10:49 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: The tutorial