IntelliJ#
Note
This page is no longer maintained, and may be out of date.
IntelliJ IDEA Community Edition is the open-source version of IntelliJ IDEA, an IDE (Integrated Development Environment) for Java, Groovy, and other programming languages such as Scala or Clojure. It is made by JetBrains, maker of PyCharm Python IDE.
Before you start#
You should have Anaconda (or Miniconda) and IntelliJ installed and working.
Note
These instructions refer to Miniconda exclusively, but will also work with Anaconda Distribution.
Set up IntelliJ using Miniconda#
Find the location of your Miniconda Python executable:
which python
The system responds with your path to Python. You need this in the next step.
Within IntelliJ#
Go to
File > Project Structure > Platform Settings > SDKs
Click the Add (+) icon
Choose
Python SDK
Enter the location of your Miniconda Python executable
/Users/UserName/miniconda3/bin/python
Note
Substitute your actual path to Miniconda that you found in the previous step.
Go to
File > Project Settings > Project > Project SDK
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…)
For more information, see the IntelliJ IDEA documentation.