Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open python interpreter on intellij

I'm new with python 3.3.

I'm using intellij IDEA 12.1.6.

How can I open the interpreter window, the one with the '>>>' prompt?

Thanks

like image 349
Nir Avatar asked Nov 03 '13 19:11

Nir


People also ask

How do I open Python interpreter?

In the terminal type the command "python3" ("python" on Windows, or sometimes "py"). This runs the interpreter program directly. On the Mac type ctrl-d to exit (on Windows ctrl-z).

Where is my Python interpreter?

Finding Python Path Hence, the path to Python is C:\Python. It can also be installed at the following path: C:\Program Files\Python.

Can you use Python on IntelliJ?

To develop Python scripts in IntelliJ IDEA, download and install Python and configure at least one Python SDK. A Python SDK can be specified as a Python interpreter for Python project. IntelliJ IDEA supports: Standard Python interpreters.

How do I install Python interpreter?

Select the Add Environment command in the Python Environments window or the Python toolbar, select the Python installation tab, indicate which interpreters to install, and select Install. You can also manually install any of the interpreters listed in the table below outside of the Visual Studio installer.


2 Answers

I am using IntelliJ IDEA 13.1.4 Ultimate with the JetBrains Python Plugin 3.4.135.24.

After installing the plugin and restarting the IDE, I can open the iPython console exactly the same way as in PyCharm, i.e. clicking Tools -> Run Python Console in the menu.

Another option is by selecting some code in a .py file, right clicking and choosing Execute Line/Selection in Console or pressing Alt + Shift + E. If the console has not been opened already, it will open now.

Using the console integrated in the IDE has a few advantages over running iPython alongside it, as listed at in the linked PyCharm documentation page.

like image 94
user7610 Avatar answered Oct 10 '22 00:10

user7610


Go To Tools -> Python Console

enter image description here

like image 38
Arpan Saini Avatar answered Oct 10 '22 01:10

Arpan Saini