view content/Coding/013-omniorbpy-virtualenv.rst @ 13:bcfe2a2c8358

Take advantages of new pelican-bootstrap3 features. Show date & tags on index. Show twitter widget. The Bootstrap readable theme was updated. I didn't like the new version as much so I saved it as 'readable-bgn' in my pelican-bootstrap3 repo. Added a setting PATH = 'content' to prevent weird errors when using 'fab regenerate', etc. Got this by googling.
author Brian Neal <bgneal@gmail.com>
date Mon, 10 Feb 2014 20:03:21 -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