Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use IPython with IronPython

What is the procedure to get IPython to use IronPython as it's Python interpreter?

I know there were previously some issues: What is required to use ipython in ironpython?

But now that these issues should be fixed, how do i actually go about this?

The install doesn't detect IronPython as a version of the Python interpreter, not that I thought it would. But I'm wondering how to do this.

I'd (ideally) like the ability to run both the CPython and IronPython versions of IPython on the same machine.

like image 533
Chris Weber Avatar asked Dec 04 '09 21:12

Chris Weber


People also ask

Can IronPython use Python libraries?

IronPython is an open-source implementation of the Python programming language which is tightly integrated with . NET. IronPython can use . NET and Python libraries, and other .

How do I run IPython in Visual Studio?

Select the Overview tab and select Use IPython interactive mode. (In Visual Studio 2015, select Configure interactive options to open the Options dialog, then set Interactive Mode to IPython, and select OK). Select Open interactive window to bring up the Interactive window in IPython mode.

Does Jupyter Notebook use IPython?

The Jupyter Notebook Application has three main kernels: the IPython, IRkernel and IJulia kernels. Since the name “Jupyter” was inspired by the leading open languages for science (Julia, Python and R), that really doesn't come as too much of a surprise.

What is IronPython used for?

IronPython works as an extension to the . NET Framework, but it can also be used by . NET projects to take advantage of Python's scripting power. Other than that, since IronPython is a real implementation of Python itself, there's no need to learn a new language or extra features if you already know Python.


1 Answers

It now works as of IronPython 2.7.3 Alpha 1!

source: https://github.com/ipython/ipython/wiki/Frequently-asked-questions#wiki-q-can-ipython-run-under-ironpython

like image 138
Bruno Lopes Avatar answered Sep 20 '22 14:09

Bruno Lopes