Re: [IronPython] 'Python' does not exist in current context

2009-05-26 Thread Justin Regele
thanks. that did the trick. it was the one I assumed wasn't needed, since modules sounded like it would be, well, just python modules. On Tue, May 26, 2009 at 2:00 PM, Dody Gunawinata wrote: > Make sure you refer to the following assemblies. > > Microsoft.Scripting.dllMicrosoft.Scripting.Core.dl

Re: [IronPython] 'Python' does not exist in current context

2009-05-26 Thread Dody Gunawinata
Make sure you refer to the following assemblies. Microsoft.Scripting.dllMicrosoft.Scripting.Core.dll IronPython.dll IronPython.Modules.dll On Tue, May 26, 2009 at 11:47 PM, Justin Regele wrote: > Trying to embed IPy in C#, and after digging all over the web and the > archives of this list, I ca

[IronPython] 'Python' does not exist in current context

2009-05-26 Thread Justin Regele
Trying to embed IPy in C#, and after digging all over the web and the archives of this list, I can't figure out why the Python object won't load. Here is the basic line where it goes wrong: ScriptEngine eng = Python.CreateEngine(); All the other typical Objects are loading fine, just not the Pyth