diff --git a/CMakeLists.txt b/CMakeLists.txt index a7abd3f5bcc62a70058f300040c31a014a642cb0..77b218400e489d86560d6ad237c669260e15093d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ IF(NOT CLIENT_ONLY) SET(BOOST_COMPONENTS system thread regex) SEARCH_FOR_BOOST () - FINDPYTHON(2.7 EXACT) + FINDPYTHON() SET(CMAKE_INCLUDE_CURRENT_DIR ON) IF(USE_QT4) diff --git a/README.md b/README.md index a47d0ccf119197701ee2f88d368e4e07373bf2a3..7a0fbe4ba269a4c0db5627a906fa3ac3fe1b4198 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ * [Installation procedure](#installation-procedure) * [Dependencies](#dependencies) * [PythonQt](#pythonqt) + * [Python 3](#python-3) * [Troubleshooting](#troubleshooting) ## gepetto-viewer-corba @@ -203,6 +204,34 @@ To install `gepetto-gui` you just have to follow the installation step at the to ### PythonQt gepetto-gui offers the possibility to develop plugins in python. To do so, you must install PythonQt by following the instructions here: https://github.com/jmirabel/PythonQt#readme +### Python 3 +This section describes the procedure to get bindings for Python 3. +The support for Python 3 is from `OmniORB 4.2.2`. +In Ubuntu 16.04, the version is 4.2.1, and in Ubuntu 18.04 it is 4.2.2, but Ubuntu main repos do not provide python 3 support. +Thus, to make it work you must manually compile `OmniORB 4.2.2`. +Download latest versions of `OmniORB` and `OmniORBpy` from [sourceforge](https://sourceforge.net/projects/omniorb/). +Then compile `OmniORB` making sure it finds python3: +```bash +export PYTHON=/usr/bin/python3 +cd omniORB-4.2.2/ +mkdir build +cd build +../configure --prefix=${CMAKE_INSTALL_PREFIX} +make +make install +``` +Compile `OmniORBpy` making sure it finds python3: +```bash +cd omniORBpy-4.2.2/ +mkdir build +cd build +../configure --prefix=${CMAKE_INSTALL_PREFIX} +make +make install +``` +Finally you can compile and install `gepetto-viewer-corba` making sure it finds `OmniORB 4.2.2`. + + # Troubleshooting ## `CORBA::TRANSIENT` when launching a server diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 95c65bd6ff5742e6c1b42d7f8631b05ba4d8e537..fa2f47f58a566e5852619a8f16e58b50915fd5d8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -20,9 +20,6 @@ SET(IDL_SOURCES graphical-interface ) -# search for python -FINDPYTHON(2.7 EXACT REQUIRED) - OMNIIDL_INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/idl) INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR}/src) diff --git a/src/gepetto/__init__.py b/src/gepetto/__init__.py index 8ee9db8ee3d880502faa18e2e657c7bb9fb417c5..79f18887441fd39b41786418379a70a1becf7dc6 100644 --- a/src/gepetto/__init__.py +++ b/src/gepetto/__init__.py @@ -15,5 +15,5 @@ # hpp-corbaserver. If not, see # <http://www.gnu.org/licenses/>. -from color import Color -from quaternion import Quaternion +from gepetto.color import Color +from gepetto.quaternion import Quaternion diff --git a/src/gepetto/corbaserver/__init__.py b/src/gepetto/corbaserver/__init__.py index 7b40fdd1f95d57590b9279274f126ff31c900bfe..0d49773b46bea0adbd90ed74cc43bbb0f83fd355 100644 --- a/src/gepetto/corbaserver/__init__.py +++ b/src/gepetto/corbaserver/__init__.py @@ -1,7 +1,7 @@ import omniORB omniORB.updateModule("gepetto.corbaserver") -import graphical_interface_idl +import gepetto.corbaserver.graphical_interface_idl -from client import Client +from gepetto.corbaserver.client import Client diff --git a/src/gepetto/corbaserver/client.py b/src/gepetto/corbaserver/client.py index 9a6f051a5b4e3d110ee9f847f4a1627d7005648d..a04b7cff4139b66c377d13901c1b09e5b572284a 100644 --- a/src/gepetto/corbaserver/client.py +++ b/src/gepetto/corbaserver/client.py @@ -32,7 +32,7 @@ class Client: try: obj = self.rootContext.resolve (name) - except CosNaming.NamingContext.NotFound, ex: + except CosNaming.NamingContext.NotFound: raise CorbaError ( 'failed to find the service ``{0}\'\''.format (serviceName [0]))