Skip to content

Instantly share code, notes, and snippets.

@suriyadeepan
Forked from rossov/ipython3_mavericks.sh
Last active May 7, 2019 14:12
Show Gist options
  • Save suriyadeepan/72f84263e856d697ae660e620deb9310 to your computer and use it in GitHub Desktop.
Save suriyadeepan/72f84263e856d697ae660e620deb9310 to your computer and use it in GitHub Desktop.
Install ipython3 on Mac OS X Mavericks
# Install ipython3 on Mac OS
# check if brew exists
brew
# install brew if necessary
# follow instructions in
# https://brew.sh/
# Update brew
brew update
brew upgrade
# Install Python 3
brew install python3
# Install ipython
sudo -H pip3 install ipython
# Install extra modules to run ipython notebool
sudo -H pip3 install pyzmq
sudo -H pip3 install jinja2
sudo -H pip3 install tornado
# Run ipython in terminal
ipython3
# Run notebook
ipython3 notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment