annotate 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 |
|
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
|