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