[Python.NET] calling Python via Python.Runtime DLL from IronPython

2016-04-19 Thread Cameron Hayne
Should it be possible to call Python (CPython) code from IronPython (an IronPython script) via the Python.Runtime DLL ? I.e. an IronPython script that imports the Python.Runtime DLL and then calls the functions provided by that DLL. In my preliminary tests, I get an error about ‘copy_reg’ not bei

Re: [Python.NET] calling Python via Python.Runtime DLL from IronPython

2016-04-19 Thread Denis Akhiyarov
Did you try this code? http://www.voidspace.org.uk/ironpython/cpython_extensions.shtml On Tue, Apr 19, 2016 at 2:09 PM, Cameron Hayne wrote: > Should it be possible to call Python (CPython) code from IronPython (an > IronPython script) via the Python.Runtime DLL ? > I.e. an IronPython script th

Re: [Python.NET] calling Python via Python.Runtime DLL from IronPython

2016-04-19 Thread Tony Roberts
No need to import the c Python extension - from IronPython you would be able to reference the Python.runtime assembly without it. The problem you're having sounds like the python path isn't correct for cPython. You could try setting the PYTHONHOME environment variable and see if that gets you any f