Hello,
I have a pythonnet installation that works fine for the most part. However,
whenever I try to import a module that was built with easy_install, I have
to explicitly add the full egg path to the sys.path variable. Does
pythonnet not respect the easy-install.pth file?
[code]
>>> import south
This is my current work-around
## Seems to be a required hack for pythonnet
if 'pythonnet' in sys.executable:
try:
import site
site.addsitedir(r'C:\Python27\lib\site-packages')
except:
print sys.path
On Fri, Aug 23, 2013 at 12:51 PM, John Burkhart wrote:
> Hello,