Re: [IronPython] Accessing CPython from compiled assemblies

2009-09-18 Thread David Escobar
lies.aspx > > Harry > > -Original Message- > From: users-boun...@lists.ironpython.com [mailto: > users-boun...@lists.ironpython.com] On Behalf Of Michael Foord > Sent: Thursday, September 17, 2009 4:28 AM > To: davidesco...@ieee.org; Discussion of IronPython > Subject

Re: [IronPython] Accessing CPython from compiled assemblies

2009-09-17 Thread David Escobar
Of course, didn't think of that. I'll just copy over the modules I'm using and then run the pyc script on them along with my own program files. Thanks. On Thu, Sep 17, 2009 at 4:28 AM, Michael Foord wrote: > David Escobar wrote: > >> I'm using IronPython 2.6 B2 and accessing the CPython 2.6 libr

Re: [IronPython] Accessing CPython from compiled assemblies

2009-09-17 Thread Harry Pierson
[mailto:users-boun...@lists.ironpython.com] On Behalf Of Michael Foord Sent: Thursday, September 17, 2009 4:28 AM To: davidesco...@ieee.org; Discussion of IronPython Subject: Re: [IronPython] Accessing CPython from compiled assemblies David Escobar wrote: > I'm using IronPython 2.6 B2 and acces

Re: [IronPython] Accessing CPython from compiled assemblies

2009-09-17 Thread Michael Foord
David Escobar wrote: I'm using IronPython 2.6 B2 and accessing the CPython 2.6 libraries in the standard way. import sys sys.path.append(r"c:\python26\lib") When I compile to an .exe, is there a way to link in the CPython libraries I'm using? Otherwise I get an ImportError when I run the app

[IronPython] Accessing CPython from compiled assemblies

2009-09-16 Thread David Escobar
I'm using IronPython 2.6 B2 and accessing the CPython 2.6 libraries in the standard way. import sys sys.path.append(r"c:\python26\lib") When I compile to an .exe, is there a way to link in the CPython libraries I'm using? Otherwise I get an ImportError when I run the application on a machine that