Bob Rosembob wrote:
Hi there,
I have a couple of questions.
1. If I'm using IronPython to call Python function from my C# app. What do I need to deploy my project? I added references to my project to the following dlls:
/IronPython.dlll
IronMath.dll/
/
 /
In the code I'm using the following:
/using IronPython.Runtime;
using IronPython.Runtime.Types;
using IronPython.Runtime.Operations;
usingIronPython.Hosting;
using IronPython.Modules;/
/
 /
The script imports:
/string/
/sys/
/os/
/math/
and other
2. In order to run the script I had to copy imported libraries into directory where my exe is. For some reason if I copy the compiled version of the files (e.g. string.pyc, sys.pyc, etc.) my script won't find them. It can see only none-compiled files. Why is it? What should I do to be able run all script files (py) as compiled (pyc)?

Those compiled files are compiled into bytecode for the CPython VM. They will never run on the .NET framework.

What is wrong with using the '.py' source files?

Michael


Please advise. Thanks,
Bob
------------------------------------------------------------------------

_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com


--
http://www.ironpythoninaction.com/
http://www.voidspace.org.uk/
http://www.trypython.org/
http://www.ironpython.info/
http://www.theotherdelia.co.uk/
http://www.resolverhacks.net/

_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to