Mercurial > public > pelican-blog
annotate 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 |
rev | line source |
---|---|
bgneal@4 | 1 Installing omniORBpy in a virtualenv |
bgneal@4 | 2 #################################### |
bgneal@4 | 3 |
bgneal@4 | 4 :date: 2012-03-27 20:30 |
bgneal@4 | 5 :tags: Python, omniORB, virtualenv |
bgneal@4 | 6 :slug: installing-omniorbpy-in-a-virtualenv |
bgneal@4 | 7 :author: Brian Neal |
bgneal@4 | 8 |
bgneal@4 | 9 I came across an interesting question on Stackoverflow_, which was essentially |
bgneal@4 | 10 `How to install omniORBpy in a virtualenv`_? I've had a lot of experience with |
bgneal@4 | 11 omniORB_, a high quality, open-source CORBA ORB, at work. omniORB is a C++ ORB, |
bgneal@4 | 12 but it also includes omniORBpy, a thin Python_ wrapper around the C++ core. |
bgneal@4 | 13 Despite using omniORBpy extensively, I had never used it in a virtualenv_. |
bgneal@4 | 14 |
bgneal@4 | 15 So I got curious, and gave it a shot. You can read `my answer`_, which the |
bgneal@4 | 16 questioner accepted. I'd love to hear of any better ways of doing it. I worked |
bgneal@4 | 17 it out for Ubuntu, but a Windows solution would be nice to see also. |
bgneal@4 | 18 |
bgneal@4 | 19 .. _Stackoverflow: http://stackoverflow.com/ |
bgneal@4 | 20 .. _How to install omniORBpy in a virtualenv: http://stackoverflow.com/questions/9716611/install-omniorb-python-in-a-virtualenv |
bgneal@4 | 21 .. _omniORB: http://omniorb.sourceforge.net/ |
bgneal@4 | 22 .. _Python: http://www.python.org/ |
bgneal@4 | 23 .. _virtualenv: http://www.virtualenv.org/ |
bgneal@4 | 24 .. _my answer: http://stackoverflow.com/a/9881882/63485 |