Skip to content

Instantly share code, notes, and snippets.

@allanaguilar
Forked from rossov/ipython3_mavericks.sh
Created February 6, 2020 15:48
Show Gist options
  • Save allanaguilar/ac74e8b1e7edc8cd287d953d39e743a0 to your computer and use it in GitHub Desktop.
Save allanaguilar/ac74e8b1e7edc8cd287d953d39e743a0 to your computer and use it in GitHub Desktop.
Install ipython3 on Mac OS X Mavericks
# Install ipython3 on Mac OS X Maverics
# Update brew
brew update
brew upgrade
# Install Python 3
brew install python3
# Install ipython
pip3 install ipython
# Install extra modules to run ipython notebool
pip3 install pyzmq
pip3 install jinja2
pip3 install tornado
# Run notebook
ipython3 notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment