Debian Sid
-
I successfully built Salome 3.2.1 on Debian Sid (gcc 4.1, vtk 5, omniORB 4.0.6). I used the document of Marc Britten http://www.salome-platform.org/forum/forum_9/thread_567 and made some changes for the vtk5 port.
Here is the list of required packages to build Salome:
- libqt3-mt-dev
- hdf5-tools
- libhdf5-serial-dev
- libomniorb4-dev
- libnetgen-dev
- libvtk5-dev
- tix-dev
- python-sip4-dev
- sip4
- qt3-dev-tools-compat
- libboost-dev
- libboost-thread-dev
- omniidl4-python
- libcos4-dev
- python2.4-dev
- pyqt-tools
- python-qt3
- python-qt-dev
- libqwt-dev
- python-omniorb2
- omniorb4-nameserver
The modifications I made for VTK5 are probably not correct but I'am currently stuck far before the loading of VTK. I get this error at the very begining:
Traceback (most recent call last):
File "/home/jerome/home3/salome-3.2.1/bin/salome/SALOME_ContainerPy.py", line 39, in ?
from SALOME_ComponentPy import *
File "/home/jerome/home3/salome-3.2.1/bin/salome/SALOME_ComponentPy.py", line 53, in ?
class SALOME_ComponentPy_i (Engines__POA.Component):
AttributeError: 'module' object has no attribute 'Component'I'm not good enought with python and omniORBpy to solve this myself. Is there's a way to list the members of Engines_POA at runtime ? Did someone see this error before ?
-
To get the list of members : print dir(Engine__POA) but I think it would not say more than the exception. It have not seen this error before. A problem with the installation of KERNEL ?
-
CAREMOLI Christian wrote:
To get the list of members :
print dir(Engine__POA)
but I think it would not say more than the exception.
It have not seen this error before.
A problem with the installation of KERNEL ?
Hi Jerôme,
As Christian suggested, could you give the output of
python -c 'import Engines__POA ; print dir(Engines__POA)'
E.A.
-
Powered by
Ploneboard
