[Python.NET] importing eggs. does pythonnet not use respect the easy-install.pth file?

2013-08-23 Thread John Burkhart
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

Re: [Python.NET] importing eggs. does pythonnet not use respect the easy-install.pth file?

2013-08-23 Thread John Burkhart
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,