About 50 results
Open links in new tab
  1. How can I call (Iron)Python code from a C# app? - Stack Overflow

    Aug 13, 2011 · Is there a way to call Python code, using IronPython I assume, from C#? If so, how?

  2. IronPython vs. Python .NET - Stack Overflow

    Feb 4, 2017 · Ironpython is like C# in turn it relies on static prebuilt libraries while unlike C# is a dynamic language. Cpython is like C++ like Ironpython is a dynamic language and has access to dynamic …

  3. Importing external module in IronPython - Stack Overflow

    Jul 12, 2013 · From the IronPython FAQ: How do I use CPython standard libraries? To tell IronPython where the Python standard library is, you can add the "lib" directory of CPython to IronPython's path. …

  4. How to use a C# dll in IronPython - Stack Overflow

    Mar 19, 2019 · I have created a dll using C#. How do use the dll in IronPython. I have tried to add the dll using clr.AddReference("yxz.dll"). But it fails. I have tried placing the dll in the execution directory...

  5. Python or IronPython - Stack Overflow

    Feb 28, 2009 · How does IronPython stack up to the default Windows implementation of Python from python.org? If I am learning Python, will I be learning a subtley different language with IronPython, …

  6. what are good uses for Iron Python - Stack Overflow

    Feb 21, 2017 · IronPython is an implementation of the runtime for that language - the support code that compiles your source, creates a virtual machine to execute the bytecode in the resulting .pyc file, …

  7. Compiling an IronPython code to EXE or DLL - Stack Overflow

    Nov 10, 2010 · Can I compile an IronPython code to EXE or DLL in a .NET runtime?

  8. How to install Iron-Python in Visual Studio? - Stack Overflow

    Jan 20, 2019 · I've searched a lot and ran into this solution: Visual Studio - "The environment ironpython 2.7-32 appears to be incorrectly configured or missing". I have downloaded iron-python from GitHub …

  9. Spotfire ironpython replacing data table values - Stack Overflow

    Oct 6, 2023 · in Spotfire I'm trying to write a string into marked rows of a table column. from Spotfire.Dxp.Data import * dataTable = Document.Data.Tables["myTable"] cursor = …

  10. C#, IronPython error: IronPython.Runtime.Exceptions.ImportException ...

    May 5, 2021 · IronPython.Runtime.Exceptions.ImportException - No module named requests The script runs now – yippy - but – the python script gets an exception when calling the requests.get () method.