Re: [Paraview] GetLookupTableForArray: LockScalarRange

2017-07-14 Thread Nabil Ghodbane
thanks for the confirmation. I will ping the library developers then.


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Fri, Jul 14, 2017 at 9:54 PM, Utkarsh Ayachit <
utkarsh.ayac...@kitware.com> wrote:

> Nabil,
>
> As the doc suggests, it's been replaced by `GetColorTransferFunction`.
> The params are quite comparable except that it does not  need the number of
> components any more.
>
> Utkarsh
>
> On Fri, Jul 14, 2017 at 3:31 PM, Nabil Ghodbane 
> wrote:
>
>> dear experts,
>> I recently moved a software from PV 4.3 to PV 5.2.0 and the software I am
>> running uses  the GetLookupTableForArray LockScalarRange property
>> Was it simply removed ?
>> thanks.
>>
>>
>> pvpython
>> from paraview import *
>> >>> from paraview.simple import *
>> paraview version 5.2.0
>> >>> help(GetLookupTableForArray)
>> Help on function GetLookupTableForArray in module paraview.simple:
>>
>> GetLookupTableForArray(arrayname, num_components, **params)
>> Used to get an existing lookuptable for a array or to create one if
>> none
>> exists. Keyword arguments can be passed in to initialize the LUT if a
>> new
>> one is created.
>> *** DEPRECATED ***: Use GetColorTransferFunction instead
>>
>>
>>
>>
>> Nabil Ghodbane (Ph. D. Habil*.*)
>> Phone: +33 6 34 42 33 43 <+33%206%2034%2042%2033%2043>
>> Mailto: nabil.ghodb...@gmail.com
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] GetLookupTableForArray: LockScalarRange

2017-07-14 Thread Nabil Ghodbane
dear experts,
I recently moved a software from PV 4.3 to PV 5.2.0 and the software I am
running uses  the GetLookupTableForArray LockScalarRange property
Was it simply removed ?
thanks.


pvpython
from paraview import *
>>> from paraview.simple import *
paraview version 5.2.0
>>> help(GetLookupTableForArray)
Help on function GetLookupTableForArray in module paraview.simple:

GetLookupTableForArray(arrayname, num_components, **params)
Used to get an existing lookuptable for a array or to create one if none
exists. Keyword arguments can be passed in to initialize the LUT if a
new
one is created.
*** DEPRECATED ***: Use GetColorTransferFunction instead




Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] COMPILE AND RUN pvBatch with h5py support errors

2017-07-14 Thread Nabil Ghodbane
hi,
in the end, I solved my issue by adding to LD_LIBRARY_PATH the missing
libraries which are needed by _hashlib.so located in python2.7/lib-dynload
hth.


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Thu, Jul 13, 2017 at 10:40 PM, Nabil Ghodbane 
wrote:

> many thanks for the suggestion. Unfortunately this did not help . Does
> someone have some hint which could help?
> thanks.
>
> Nabil Ghodbane (Ph. D. Habil*.*)
> Phone: +33 6 34 42 33 43 <06%2034%2042%2033%2043>
> Mailto: nabil.ghodb...@gmail.com
>
>
> On Thu, Jul 13, 2017 at 3:06 PM, Ben Boeckel 
> wrote:
>
>> On Thu, Jul 13, 2017 at 14:54:11 +0200, Nabil Ghodbane wrote:
>> > dear experts,
>> > on a CentOS6.8 x86_64 node, I used the Superbuild to compile Paraview
>> > 5.3.0-1 with dev tool 4 (which provides gcc 5.3 )
>> >
>> > As shown on the attached screen captures, In the CCMAKE configuration, I
>> > enabled Python with Matplot, Scipy, Numpy.
>> >
>> > Once the compilation finished, I successfully added the h5py package
>> > but if I start pvBatch or pvpython, i can see some error messages about
>> the
>> > hashlib module.
>> >
>> >
>> > *ValueError: unsupported hash type sha384ERROR   : code for hash sha512
>> was
>> > not found.*
>> >
>> > This issue seems to be more a Python bug, than a Paraview issue. But
>> maybe
>> > someone on this mailing list did experience the issue. In case, I will
>> be
>> > grateful, if he or she could share his experience on how he/she solved
>> this
>> > issue.
>>
>> I think this is usually an issue with openssl headers not being
>> available when compiling Python. Does installing openssl-devel and
>> forcing a rebuild of Python (cd $builddir; rm -rf superbuild/python) fix
>> the issue?
>>
>> --Ben
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] COMPILE AND RUN pvBatch with h5py support errors

2017-07-13 Thread Nabil Ghodbane
many thanks for the suggestion. Unfortunately this did not help . Does
someone have some hint which could help?
thanks.

Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Thu, Jul 13, 2017 at 3:06 PM, Ben Boeckel 
wrote:

> On Thu, Jul 13, 2017 at 14:54:11 +0200, Nabil Ghodbane wrote:
> > dear experts,
> > on a CentOS6.8 x86_64 node, I used the Superbuild to compile Paraview
> > 5.3.0-1 with dev tool 4 (which provides gcc 5.3 )
> >
> > As shown on the attached screen captures, In the CCMAKE configuration, I
> > enabled Python with Matplot, Scipy, Numpy.
> >
> > Once the compilation finished, I successfully added the h5py package
> > but if I start pvBatch or pvpython, i can see some error messages about
> the
> > hashlib module.
> >
> >
> > *ValueError: unsupported hash type sha384ERROR   : code for hash sha512
> was
> > not found.*
> >
> > This issue seems to be more a Python bug, than a Paraview issue. But
> maybe
> > someone on this mailing list did experience the issue. In case, I will be
> > grateful, if he or she could share his experience on how he/she solved
> this
> > issue.
>
> I think this is usually an issue with openssl headers not being
> available when compiling Python. Does installing openssl-devel and
> forcing a rebuild of Python (cd $builddir; rm -rf superbuild/python) fix
> the issue?
>
> --Ben
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] superbuild: configure: error swr requires C++14 support

2017-07-11 Thread Nabil Ghodbane
dear experts,
the superbuild currently supports mpich (
http://www.paraview.org/files/dependencies/mpich-3.2.tar.gz). Did someone
by chance try to use openmpi (which version can be used in this case?) and
if so, is there some feedback one could benefit from ?
thanks.

Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Jul 4, 2017 at 3:02 PM, Nabil Ghodbane 
wrote:

> dear experts
> I am trying to compile Paraview with the latest superbuild using gcc 4.8.5
> the compilation fails with the error message that C++14 is needed...
> *configure: error swr requires C++14 support*
>
> This raises two questions:
> 1/ Can one switch to c++11  and if yes, how ?
> 2/ what is the minimal configuration for gcc one needs to setup in order
> to be able to compile Paraview with superbuild.
> thanks
>
>
> Nabil Ghodbane (Ph. D. Habil*.*)
> Phone: +33 6 34 42 33 43 <06%2034%2042%2033%2043>
> Mailto: nabil.ghodb...@gmail.com
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] superbuild: configure: error swr requires C++14 support

2017-07-04 Thread Nabil Ghodbane
dear experts
I am trying to compile Paraview with the latest superbuild using gcc 4.8.5
the compilation fails with the error message that C++14 is needed...
*configure: error swr requires C++14 support*

This raises two questions:
1/ Can one switch to c++11  and if yes, how ?
2/ what is the minimal configuration for gcc one needs to setup in order to
be able to compile Paraview with superbuild.
thanks


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [SuperBuild] Docker ?

2017-04-10 Thread Nabil Ghodbane
thanks for sharing!

Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Mon, Apr 10, 2017 at 5:27 PM, Ben Boeckel 
wrote:

> On Mon, Apr 10, 2017 at 16:18:21 +0200, Nabil Ghodbane wrote:
> > it is not clear to me what you did. Did you build your own docker with
> > Paraview on top of it and if this is the case could you share the
> > Dockerfile you implemented to build the docker image?
>
> The Dockerfile (and associated files) we use to build the image are
> attached. It also does buildbot stuff rather than building ParaView
> directly, but it has all the bits necessary to build the binaries we
> make.
>
> I'd have to extract the systemd configuration used to inject the
> Xauthority and VNC bits into the container from the machine though if
> you need that (if you're using Mesa for offscreen rendering, you
> shouldn't need it).
>
> --Ben
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] [SuperBuild] Docker ?

2017-04-10 Thread Nabil Ghodbane
Hi Ben,
it is not clear to me what you did. Did you build your own docker with
Paraview on top of it and if this is the case could you share the
Dockerfile you implemented to build the docker image?
thanks


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Mon, Apr 10, 2017 at 3:49 PM, Ben Boeckel 
wrote:

> On Fri, Apr 07, 2017 at 18:30:11 +0200, Florian Hoffmann wrote:
> > does anybody out there would like to share some experience with a recent
> > ParaView Superbuild (>=version 5.2) with *Docker* ?
> >
> > - Suggestions/recommendations for existing Dockerfiles ?
> >
> > - Suggestions for settings like: Qt version, Mesa3D vs. OpenGL, ... ?
>
> For building or running within a Docker image? We use a Docker image to
> build it and to do some rudimentary testing (using a VNC server plumbed
> in from the host).
>
> --Ben
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-22 Thread Nabil Ghodbane
Hi
Thanks for the reply. Did someone else manage to get this approach based on
the superbuilder machinery on a Centos 7 node? As I wrote it previously the
installation works nicely on Ubuntu but fails on CentOS.
I will appréciateur any feedback about it.
Thanks

On Tuesday, February 21, 2017, Ben Boeckel  wrote:

> On Tue, Feb 21, 2017 at 18:48:37 +0100, Nabil Ghodbane wrote:
> > fine, I started a parallel build on another node using Python 2.7.12, it
> > seems to be compiling so far...
> > As I wrote it previously, the first compilation based on Python 2.7.11
> > shipped by the superbuilder fails  with the following message:
> > do you know by chance whether I do have to switch on/off some flag ?
>
> Hmm. This looks like a problem with ParaView itself. What HDF5 settings
> are you using in the superbuild and what HDF5-related settings are set
> in `superbuild/paraview/build/CMakeCache.txt`.
>
> --Ben
>


-- 
Nabil Ghodbane (PhD. Habil.)
Mailto: nabil.ghodb...@gmail.com
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
Hi,
fine, I started a parallel build on another node using Python 2.7.12, it
seems to be compiling so far...
As I wrote it previously, the first compilation based on Python 2.7.11
shipped by the superbuilder fails  with the following message:
do you know by chance whether I do have to switch on/off some flag ?

Below, the error messages...
thanks for your valuable help


-- Found PythonInterp: /root//build/install/bin/python2.7 (found version
"2.7.11")
CMake Error at CommandLineExecutables/CMakeLists.txt:77 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:82 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:77 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:82 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


-- Configuring incomplete, errors occurred!

Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 6:38 PM, Ben Boeckel 
wrote:

> On Tue, Feb 21, 2017 at 17:57:37 +0100, Nabil Ghodbane wrote:
> > many thanks for the prompt reply. I should have hit the toggle option :).
>
> It's fine, that bug is elusive and a pain to deal with.
>
> > No i did not give it a try yet. I will try it and send feedback (I am
> using
> > miniconda)
> > Does this mean that using non embedded python is still experimental ?
>
> Using a system Python is fine, it's just that the one in the superbuild
> hasn't been bumped.
>
> --Ben
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
Hi,
did by chance someone hit this additional issue about missing hdf5 target.
I checked that the super build script managed to successfully download the
archive: hdf5-1.8.13.tar.gz
but it seems, it fails
Do I have to switch some additional flag, or is this some issue?
thanks


-- Found PythonInterp: /root//build/install/bin/python2.7 (found version
"2.7.11")
CMake Error at CommandLineExecutables/CMakeLists.txt:77 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:82 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:77 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


CMake Error at CommandLineExecutables/CMakeLists.txt:82 (get_property):
  get_property could not find TARGET hdf5.  Perhaps it has not yet been
  created.


-- Configuring incomplete, errors occurred!


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 5:57 PM, Nabil Ghodbane 
wrote:

> hi Ben,
> many thanks for the prompt reply. I should have hit the toggle option :).
> No i did not give it a try yet. I will try it and send feedback (I am using
> miniconda)
> Does this mean that using non embedded python is still experimental ?
> thanks
>
> Nabil Ghodbane (Ph. D. Habil*.*)
> Phone: +33 6 34 42 33 43 <06%2034%2042%2033%2043>
> Mailto: nabil.ghodb...@gmail.com
>
>
> On Tue, Feb 21, 2017 at 4:55 PM, Ben Boeckel 
> wrote:
>
>> > > On Tue, Feb 21, 2017 at 9:25 AM, Nabil Ghodbane
>> > >  wrote:
>> > > > OK many thanks,; I am trying to use the Superbuild now.
>> > > > I can see that it is downloading Python 2.7.11. Is there a
>> particular
>> > > reason
>> > > > to use this version instead of the 2.7.12?
>>
>> Haven't gotten around to updating to 2.7.12 (we're behind in updating
>> dependencies).
>>
>> On Tue, Feb 21, 2017 at 16:18:48 +0100, Nabil Ghodbane wrote:
>> > ok thanks for the hint. I obviously missed this point. I will try again.
>> > I tried with the Python which is downloaded by the Paraview builder and
>> i
>> > am hiting a new issue about libQtLucene.so
>> > Is this a known issue ?
>>
>> There's a flag qt4_WORK_AROUND_BROKEN_ASSISTANT_BUILD you can set (it's
>> marked as advanced, so it is hidden by default). Details are here if
>> you're interested:
>>
>> https://gitlab.kitware.com/paraview/common-superbuild/blob/
>> master/projects/qt4.common.cmake#L5
>>
>> --Ben
>>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
hi Ben,
many thanks for the prompt reply. I should have hit the toggle option :).
No i did not give it a try yet. I will try it and send feedback (I am using
miniconda)
Does this mean that using non embedded python is still experimental ?
thanks

Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 4:55 PM, Ben Boeckel 
wrote:

> > > On Tue, Feb 21, 2017 at 9:25 AM, Nabil Ghodbane
> > >  wrote:
> > > > OK many thanks,; I am trying to use the Superbuild now.
> > > > I can see that it is downloading Python 2.7.11. Is there a particular
> > > reason
> > > > to use this version instead of the 2.7.12?
>
> Haven't gotten around to updating to 2.7.12 (we're behind in updating
> dependencies).
>
> On Tue, Feb 21, 2017 at 16:18:48 +0100, Nabil Ghodbane wrote:
> > ok thanks for the hint. I obviously missed this point. I will try again.
> > I tried with the Python which is downloaded by the Paraview builder and i
> > am hiting a new issue about libQtLucene.so
> > Is this a known issue ?
>
> There's a flag qt4_WORK_AROUND_BROKEN_ASSISTANT_BUILD you can set (it's
> marked as advanced, so it is hidden by default). Details are here if
> you're interested:
>
> https://gitlab.kitware.com/paraview/common-superbuild/
> blob/master/projects/qt4.common.cmake#L5
>
> --Ben
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
ok thanks for the hint. I obviously missed this point. I will try again.
I tried with the Python which is downloaded by the Paraview builder and i
am hiting a new issue about libQtLucene.so
Is this a known issue ?
Here are my settings:
gcc version 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)

ccmake flags:
ENABLE_qt4   ON
USE_SYSTEM_qt4   OFF
Note, that I can see a compilation failure with the following error message:

the compilation fails with:
/usr/bin/ld: warning: libQtCLucene.so.4, needed by
/root/postlabs/build/superbuild/qt4/build/lib/libQtHelp.so, not found (try
using -rpath or -rpath-link)
/root/postlabs/build/superbuild/qt4/build/lib/libQtHelp.so: undefined
reference to `QCLuceneIndexWriter::~QCLuceneIndexWriter()'
collect2: error: ld returned 1 exit status
gmake[7]: *** [../../../../bin/assistant] Error 1
gmake[6]: *** [sub-assistant-make_default-ordered] Error 2
gmake[5]: *** [sub-tools-make_default-ordered] Error 2
gmake[4]: *** [sub-assistant-make_default-ordered] Error 2
gmake[3]: *** [sub-tools-make_default-ordered] Error 2
CMake Error at /root/postlabs/build/superbuild/sb-qt4-build.cmake:43
(message):


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 4:07 PM, Utkarsh Ayachit <
utkarsh.ayac...@kitware.com> wrote:

> On Tue, Feb 21, 2017 at 9:25 AM, Nabil Ghodbane
>  wrote:
> > OK many thanks,; I am trying to use the Superbuild now.
> > I can see that it is downloading Python 2.7.11. Is there a particular
> reason
> > to use this version instead of the 2.7.12?
>
> You can change the superbuild to use system Python i.e Python on your
> system. See docs here
> (https://gitlab.kitware.com/paraview/paraview-superbuild)
> Setting CMake variable USE_SYSTEM_python to ON will use whatever is
> instralled on your system.
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
OK many thanks,; I am trying to use the Superbuild now.
I can see that it is downloading Python 2.7.11. Is there a particular
reason to use this version instead of the 2.7.12?
And how can I switch to the latest stable release ?
Or is this against the super build approach ?
apologize if my question is non sens

thanks.


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 2:56 PM, Ken Martin  wrote:

> You need OpenGL version 3.2, try updating mesa to version 12 or later.
> (11.2 should work also if you are not using OSMesa)
>
> Thanks
> Ken
>
> On Tue, Feb 21, 2017 at 8:39 AM, Nabil Ghodbane 
> wrote:
>
>> dear experts,
>> I am trying to compile Paraview 5.2 with gcc 4.8 + Qt 4.8 + VTK 5.10 +
>> Python 2.7 (available with Miniconda) on a CentOS 7 machine.
>>
>> it compiles well, but I fail to run the Paraview; Paraview starts, but
>> when I try to open a file, I get:
>>
>> ERROR: In 
>> /root/ParaView-v5.2.0/VTK/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx,
>> line 641
>> vtkXOpenGLRenderWindow (0x1b85d60): GL version 2.1 with the gpu_shader4
>> extension is not supported by your graphics driver but is required for the
>> new OpenGL rendering backend. Please update your OpenGL driver. If you are
>> using Mesa please make sure you have version 10.6.5 or later and make sure
>> your driver in Mesa supports OpenGL 3.2.
>>
>> could some expert either point me to some standard approach, I need to
>> use, or point me to the relevant cmake flags to set?
>> thanks for your valuable help
>>
>>
>> Nabil Ghodbane (Ph. D. Habil*.*)
>> Phone: +33 6 34 42 33 43 <+33%206%2034%2042%2033%2043>
>> Mailto: nabil.ghodb...@gmail.com
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>>
>
>
> --
> Ken Martin PhD
> Chairman & CFO
> Kitware Inc.
> 28 Corporate Drive
> Clifton Park NY 12065
> 518 371 3971
>
> This communication, including all attachments, contains confidential and
> legally privileged information, and it is intended only for the use of the
> addressee.  Access to this email by anyone else is unauthorized. If you are
> not the intended recipient, any disclosure, copying, distribution or any
> action taken in reliance on it is prohibited and may be unlawful. If you
> received this communication in error please notify us immediately and
> destroy the original message.  Thank you.
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
In additon to my previous message, if I run Vagrind, I get:
ERROR: In /root/ParaView-v5.2.0/VTK/Rendering/OpenGL2/vtkShaderProgram.cxx,
line 395
vtkShaderProgram (0x434d1f0): 0:39(12): error: extension
`GL_EXT_gpu_shader4' unsupported in fragment shader


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Feb 21, 2017 at 2:39 PM, Nabil Ghodbane 
wrote:

> dear experts,
> I am trying to compile Paraview 5.2 with gcc 4.8 + Qt 4.8 + VTK 5.10 +
> Python 2.7 (available with Miniconda) on a CentOS 7 machine.
>
> it compiles well, but I fail to run the Paraview; Paraview starts, but
> when I try to open a file, I get:
>
> ERROR: In 
> /root/ParaView-v5.2.0/VTK/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx,
> line 641
> vtkXOpenGLRenderWindow (0x1b85d60): GL version 2.1 with the gpu_shader4
> extension is not supported by your graphics driver but is required for the
> new OpenGL rendering backend. Please update your OpenGL driver. If you are
> using Mesa please make sure you have version 10.6.5 or later and make sure
> your driver in Mesa supports OpenGL 3.2.
>
> could some expert either point me to some standard approach, I need to
> use, or point me to the relevant cmake flags to set?
> thanks for your valuable help
>
>
> Nabil Ghodbane (Ph. D. Habil*.*)
> Phone: +33 6 34 42 33 43 <06%2034%2042%2033%2043>
> Mailto: nabil.ghodb...@gmail.com
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Compiling Paraview 5.2 GCC 4.8 vtkOpenGLRenderWindow.cxx, line 641

2017-02-21 Thread Nabil Ghodbane
dear experts,
I am trying to compile Paraview 5.2 with gcc 4.8 + Qt 4.8 + VTK 5.10 +
Python 2.7 (available with Miniconda) on a CentOS 7 machine.

it compiles well, but I fail to run the Paraview; Paraview starts, but when
I try to open a file, I get:

ERROR: In
/root/ParaView-v5.2.0/VTK/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx, line
641
vtkXOpenGLRenderWindow (0x1b85d60): GL version 2.1 with the gpu_shader4
extension is not supported by your graphics driver but is required for the
new OpenGL rendering backend. Please update your OpenGL driver. If you are
using Mesa please make sure you have version 10.6.5 or later and make sure
your driver in Mesa supports OpenGL 3.2.

could some expert either point me to some standard approach, I need to use,
or point me to the relevant cmake flags to set?
thanks for your valuable help


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Compile Paraview 5.0.1 with gcc 4.1

2017-01-26 Thread Nabil Ghodbane
dear experts,
I need to compile the Paraview 5.01 for CentOS 5.11/ gcc 4.1.2 (x64).
Unfortunately the CMake claims that GCC 4.2 or greater is required. I can
of course edit the CMake files and release this constraint.
But before going further, I am wondering whether someone on this mailing
list did already manage to compile Paraview with gcc 4.1.
My final goal being to compile h5py+Paraview
In advance, thanks for your valuable help.


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] xdmf latest sources?

2016-07-26 Thread Nabil Ghodbane
apologize I should have sent this email to the Xdmf mailing list.  Doing so
now.


Nabil Ghodbane (Ph. D. Habil*.*)
Phone: +33 6 34 42 33 43
Mailto: nabil.ghodb...@gmail.com


On Tue, Jul 26, 2016 at 1:49 PM, Nabil Ghodbane 
wrote:

> hi Chuck;
> many thanks for your reply and for the link. As a side question, do you
> know whether there is some link you could point me to and which describes
> how to migrate from version 2 to version 3 for Xdmf; Is such a
> documentation available? The following wiki is lacking information about it:
> http://xdmf.org/index.php/V2_To_V3
> cheers, nabil.
>
> Nabil Ghodbane (PhD Habil*.*)
> Mailto: nabil.ghodb...@gmail.com
>
>
> On Tue, Jul 26, 2016 at 2:54 AM, Chuck Atkins 
> wrote:
>
>> Hi Nabil,
>>
>> It's likely that you are behind some sort of firewall, either local on
>> your machine or on the networks your trying use, that is blocking access to
>> unknown protocols, in this case, the git protocol.  HTTP and HTTPS are
>> usually always allowed but probably not git://.  You can also access the
>> repo from our public gitlab server by cloning
>> https://gitlab.kitware.com/xdmf/xdmf.git .
>>
>> --
>> Chuck Atkins
>> Staff R&D Engineer, Scientific Computing
>> Kitware, Inc.
>> (518) 881-1183
>>
>> On Thu, Jul 21, 2016 at 9:43 AM, Nabil Ghodbane > > wrote:
>>
>>> hi Tom,
>>> many thanks for your reply. strangely it does not really work for me
>>> using two different computers and networks. Could it simply be some domain
>>> restriction in the end?
>>> In the end, I managed to get it from here:
>>>  https://github.com/live-clones/xdmf.git
>>>
>>> but I would prefer to use the official repository, if any.
>>>
>>> On Thu, Jul 21, 2016 at 3:33 PM, T.J. Corona 
>>> wrote:
>>>
>>>> Hi Nabil,
>>>>
>>>> "git clone git://xdmf.org/Xdmf.git” appears to work for me. Perhaps
>>>> try again from a different network connection?
>>>>
>>>> Sincerely,
>>>> T.J.
>>>>
>>>> Thomas J. Corona, Ph.D.
>>>> Kitware, Inc.
>>>> R&D Engineer
>>>> 21 Corporate Drive
>>>> Clifton Park, NY 12065-8662
>>>> Phone: 518-881-4443
>>>>
>>>> On Jul 21, 2016, at 8:57 AM, Nabil Ghodbane 
>>>> wrote:
>>>>
>>>> dear experts,
>>>> where can I download the latest XDMF source code from?
>>>> In the http://xdmf.org/index.php/Get_Xdmf wiki, it says one needs to
>>>> use:
>>>> git clone git://xdmf.org/Xdmf.git
>>>> but this simply does not work.
>>>> it hangs up with the following message:
>>>> Cloning into 'Xdmf'...
>>>>
>>>> many thanks for your valuable help.
>>>> ___
>>>> Powered by www.kitware.com
>>>>
>>>> Visit other Kitware open-source projects at
>>>> http://www.kitware.com/opensource/opensource.html
>>>>
>>>> Please keep messages on-topic and check the ParaView Wiki at:
>>>> http://paraview.org/Wiki/ParaView
>>>>
>>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>>
>>>> Follow this link to subscribe/unsubscribe:
>>>> http://public.kitware.com/mailman/listinfo/paraview
>>>>
>>>>
>>>>
>>>
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://public.kitware.com/mailman/listinfo/paraview
>>>
>>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] xdmf latest sources?

2016-07-26 Thread Nabil Ghodbane
hi Chuck;
many thanks for your reply and for the link. As a side question, do you
know whether there is some link you could point me to and which describes
how to migrate from version 2 to version 3 for Xdmf; Is such a
documentation available? The following wiki is lacking information about it:
http://xdmf.org/index.php/V2_To_V3
cheers, nabil.

Nabil Ghodbane (PhD Habil*.*)
Mailto: nabil.ghodb...@gmail.com


On Tue, Jul 26, 2016 at 2:54 AM, Chuck Atkins 
wrote:

> Hi Nabil,
>
> It's likely that you are behind some sort of firewall, either local on
> your machine or on the networks your trying use, that is blocking access to
> unknown protocols, in this case, the git protocol.  HTTP and HTTPS are
> usually always allowed but probably not git://.  You can also access the
> repo from our public gitlab server by cloning
> https://gitlab.kitware.com/xdmf/xdmf.git .
>
> --
> Chuck Atkins
> Staff R&D Engineer, Scientific Computing
> Kitware, Inc.
> (518) 881-1183
>
> On Thu, Jul 21, 2016 at 9:43 AM, Nabil Ghodbane 
> wrote:
>
>> hi Tom,
>> many thanks for your reply. strangely it does not really work for me
>> using two different computers and networks. Could it simply be some domain
>> restriction in the end?
>> In the end, I managed to get it from here:
>>  https://github.com/live-clones/xdmf.git
>>
>> but I would prefer to use the official repository, if any.
>>
>> On Thu, Jul 21, 2016 at 3:33 PM, T.J. Corona 
>> wrote:
>>
>>> Hi Nabil,
>>>
>>> "git clone git://xdmf.org/Xdmf.git” appears to work for me. Perhaps try
>>> again from a different network connection?
>>>
>>> Sincerely,
>>> T.J.
>>>
>>> Thomas J. Corona, Ph.D.
>>> Kitware, Inc.
>>> R&D Engineer
>>> 21 Corporate Drive
>>> Clifton Park, NY 12065-8662
>>> Phone: 518-881-4443
>>>
>>> On Jul 21, 2016, at 8:57 AM, Nabil Ghodbane 
>>> wrote:
>>>
>>> dear experts,
>>> where can I download the latest XDMF source code from?
>>> In the http://xdmf.org/index.php/Get_Xdmf wiki, it says one needs to
>>> use:
>>> git clone git://xdmf.org/Xdmf.git
>>> but this simply does not work.
>>> it hangs up with the following message:
>>> Cloning into 'Xdmf'...
>>>
>>> many thanks for your valuable help.
>>> ___
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://public.kitware.com/mailman/listinfo/paraview
>>>
>>>
>>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] xdmf latest sources?

2016-07-21 Thread Nabil Ghodbane
hi Tom,
many thanks for your reply. strangely it does not really work for me using
two different computers and networks. Could it simply be some domain
restriction in the end?
In the end, I managed to get it from here:
 https://github.com/live-clones/xdmf.git

but I would prefer to use the official repository, if any.

On Thu, Jul 21, 2016 at 3:33 PM, T.J. Corona  wrote:

> Hi Nabil,
>
> "git clone git://xdmf.org/Xdmf.git” appears to work for me. Perhaps try
> again from a different network connection?
>
> Sincerely,
> T.J.
>
> Thomas J. Corona, Ph.D.
> Kitware, Inc.
> R&D Engineer
> 21 Corporate Drive
> Clifton Park, NY 12065-8662
> Phone: 518-881-4443
>
> On Jul 21, 2016, at 8:57 AM, Nabil Ghodbane 
> wrote:
>
> dear experts,
> where can I download the latest XDMF source code from?
> In the http://xdmf.org/index.php/Get_Xdmf wiki, it says one needs to use:
> git clone git://xdmf.org/Xdmf.git
> but this simply does not work.
> it hangs up with the following message:
> Cloning into 'Xdmf'...
>
> many thanks for your valuable help.
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] xdmf latest sources?

2016-07-21 Thread Nabil Ghodbane
dear experts,
where can I download the latest XDMF source code from?
In the http://xdmf.org/index.php/Get_Xdmf wiki, it says one needs to use:
git clone git://xdmf.org/Xdmf.git
but this simply does not work.
it hangs up with the following message:
Cloning into 'Xdmf'...

many thanks for your valuable help.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview