Mercurial > public > pelican-blog
diff content/Coding/013-omniorbpy-virtualenv.rst @ 4:7ce6393e6d30
Adding converted blog posts from old blog.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 30 Jan 2014 21:45:03 -0600 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/Coding/013-omniorbpy-virtualenv.rst Thu Jan 30 21:45:03 2014 -0600 @@ -0,0 +1,24 @@ +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