Re: [Python.NET] C# path for 3rd-party libraries?

2013-07-23 Thread Tribble, Brett
I think you can register them in the GAC as well, but this is a pain in the butt to maintain. http://en.wikipedia.org/wiki/Global_Assembly_Cache From: PythonDotNet [mailto:pythondotnet-bounces+btribble=ea@python.org] On Behalf Of Jason Sachs Sent: Tuesday, July 23, 2013 2:06 PM To: pythondo

Re: [Python.NET] C# path for 3rd-party libraries?

2013-07-23 Thread Jason Sachs
Never mind, I figured it out, you just have to make sure the .dll files are in the PYTHONPATH. On Tue, Jul 23, 2013 at 1:45 PM, Jason Sachs wrote: > I got the pythonnet libraries installed and working with my Python > installation, and I can do > > import clr > import System > > without err

[Python.NET] C# path for 3rd-party libraries?

2013-07-23 Thread Jason Sachs
I got the pythonnet libraries installed and working with my Python installation, and I can do import clr import System without errors, but when I go to import a 3rd-party .NET library I have installed, it can't find it: >>> import clr >>> import System >>> import OpenLayers.Base Traceback (m

Re: [Python.NET] debugging

2013-07-23 Thread Jason Sachs
thanks both of you! On Tue, Jul 23, 2013 at 8:39 AM, Daniel Krause wrote: > This link might help you: > http://www.lfd.uci.edu/~gohlke/pythonlibs/ > > > 2013/7/23 Jason Sachs > >> is there a prebuilt version of pythonnet for x64? I tried downloading >> source + opening the VS10 solution file i

Re: [Python.NET] debugging

2013-07-23 Thread Daniel Krause
This link might help you: http://www.lfd.uci.edu/~gohlke/pythonlibs/ 2013/7/23 Jason Sachs > is there a prebuilt version of pythonnet for x64? I tried downloading > source + opening the VS10 solution file it in Visual Studio express 2013 > but it gives a bunch of migration errors. > > > On Mon,

Re: [Python.NET] debugging

2013-07-23 Thread Jason Sachs
is there a prebuilt version of pythonnet for x64? I tried downloading source + opening the VS10 solution file it in Visual Studio express 2013 but it gives a bunch of migration errors. On Mon, Jul 22, 2013 at 5:48 PM, Bradley Friedman wrote: > My best guess is that the pyd file is not built cor