Beginners Guide: Setting A Python Environment on M
  • Introduction
  • Update it, right away!
  • Download, download
  • Python
  • Option 1: Brew it!
    • Using Home-brew
    • Python with Homebrew
  • Option 2: Pyenv it!
    • Install and use multiple Python versions
  • Option 3: Conda it!
  • Run Python
    • Get pip!
    • NumPy-SciPy-Matplotlib
    • Get an IDE
Powered by GitBook
On this page
  1. Run Python

Get an IDE

PreviousNumPy-SciPy-Matplotlib

Last updated 7 years ago

Now, I got Python. I got pip. What's this IDE?

IDE stands for Integrated Development Environment.

In simple terms, IDE is a form a terminal window that's just made for running Python and comes with a lot of bells and whistles for it.

The one that I am going to install for you is quite the vanilla flavor of the Python IDE world and if you are(or want to be) an advanced user of Python I recommend you explore additional IDE kernels. However, for now lets get started with .

is an improved Python shell than the one you get from running $ python in the command-line. It has many cool functions such as copy & paste, redo/undo, creating charts in-line etc. You can find all the details on them in the .

But, wait... isnt all of this becoming too complicated? Should I really be installing all of this?

Don't you worry. We have got you covered for this.

Test drive Jupyter . No installation needed. All features available. All within your browser.

But, if we impress you. Go ahead and install this key Python tool.

Installation

Installing Jupyter using pip is very simple. Just run the following command in your terminal:

$ pip3 install jupyter

That's it! No, seriously that's it.

Now you are up and running with your new IDE, Jupyter notebook and all the packages.

Jupyter
Jupyter
documentation
here