macos-setup
  • MacOS Setup Guidance
  • Homebrew
    • Using Homebrew
    • cask
  • Terminal
    • iterm2
    • Terminal Hot keys
    • Zsh
    • Fish
    • tree
  • Git
    • Git Ignore (global)
  • Vagrant
  • Sublime TXT
    • Subl plugins
  • VIM
    • Hot keys
  • Python
    • pip
    • IPython
    • Virtualenv
  • Xcode
  • Evernote
Powered by GitBook
On this page

Was this helpful?

  1. Python

IPython

PreviouspipNextVirtualenv

Last updated 5 years ago

Was this helpful?

is an improved Python shell than the one you get from running $ python in the command-line. It has many cool functions (running Unix commands from the Python shell, easy copy & paste, creating Matplotlib charts in-line etc.). You can find all functions in the . IPython is a kernel for Jupyter Notebook. If you are confused IPython with Jupyter, refer to the

Installation

$ pip install ipython

If you want a more fine grained command you can try the following:

For zsh -> $ pip install 'ipython[zmq,qtconsole,notebook,test]'

For bash -> $ pip install ipython[zmq,qtconsole,notebook,test]

IPython
documentation
Jupyter documentation