view content/Coding/013-omniorbpy-virtualenv.rst @ 7:49bebfa6f9d3

Added summary lines for those posts that had back to back headings. Those posts didn't look so great on Pelican's index.
author Brian Neal <bgneal@gmail.com>
date Fri, 31 Jan 2014 20:32:36 -0600
parents 7ce6393e6d30
children
line wrap: on
line source
Installing omniORBpy in a virtualenv
####################################

:date: 2012-03-27 20:30
:tags: Python, omniORB, virtualenv
:slug: installing-omniorbpy-in-a-virtualenv
:author: Brian Neal

I came across an interesting question on Stackoverflow_, which was essentially
`How to install omniORBpy in a virtualenv`_? I've had a lot of experience with
omniORB_, a high quality, open-source CORBA ORB, at work. omniORB is a C++ ORB,
but it also includes omniORBpy, a thin Python_ wrapper around the C++ core.
Despite using omniORBpy extensively, I had never used it in a virtualenv_.

So I got curious, and gave it a shot. You can read `my answer`_, which the
questioner accepted. I'd love to hear of any better ways of doing it. I worked
it out for Ubuntu, but a Windows solution would be nice to see also.

.. _Stackoverflow: http://stackoverflow.com/
.. _How to install omniORBpy in a virtualenv: http://stackoverflow.com/questions/9716611/install-omniorb-python-in-a-virtualenv
.. _omniORB: http://omniorb.sourceforge.net/
.. _Python: http://www.python.org/
.. _virtualenv: http://www.virtualenv.org/
.. _my answer: http://stackoverflow.com/a/9881882/63485