IntelliJ IDEA Community Edition is the open-source version ofIntelliJ IDEA,an IDE (Integrated Development Environment)for Java, Groovy, and other programming languages such as Scalaor Clojure. It is made by JetBrains, maker of PyCharm Python IDE.
Before you start¶
You should have both Miniconda and IntelliJ installed and working.
DEFAULT KEYMAP ReSharper 2.x/IntelliJ IDEA scheme Improve Show available quick-fixes and context actions Alt + Enter Ctrl + Shift + Alt + A View type hierarchy Ctrl + Alt H Go to next highlight (error, warning or suggestion) F12 Go to previous highlight. Yet, neither of these is on the (default) IDEA right-click menu. So, I either need to move my mouse to the menu or dig out the keyboard shortcut cheat-sheet. My question is then, is there a way I configure what is on the right-click menu when it's in a code file? IntelliJ IDEA automatically suggests a predefined keymap based on your environment. Make sure that it matches the OS you are using or select the one that matches shortcuts from another IDE or editor you are used to (for example, Eclipse or NetBeans). IntelliJ IDEA sets itself apart by offering incredibly advanced ways to find objects and files within large projects. Mastering the act of finding what you need is key to faster development. The navigation bar is a useful alternative to the Project pane. This horizontal bar.
Set up IntelliJ using Miniconda¶
Find location of Miniconda Python executable:
Idea Cheat Sheet
The system responds with your path to Python. You need this in the next step.
Within IntelliJ¶
Go to
File>ProjectStructure>PlatformSettings>SDKs
Click the Add (+) icon
Choose
PythonSDK
Enter location of Miniconda Python executable
/Users/UserName/miniconda3/bin/python
Note
Substitute your actual path to Miniconda that you found in the previousstep.
Go to
File>ProjectSettings>Project>ProjectSDK
Select from the drop-down: Python 3.6.0 (~/miniconda3/bin/python…)
Go to
Run>Debug
Click the Add (+) icon
Select
Python
and then enter the following:Name: MyProject
Script: /Users/UserName/MyProject/my_file.py
Use Specified Interpreter: Python 3.6.0 (~/miniconda3/bin/python…)
Intellij Idea Ide
For more information, see the IntelliJ IDEA documentation.