Skip to content

Instantly share code, notes, and snippets.

@rossov
Last active June 19, 2022 23:02
Show Gist options
  • Save rossov/10438571 to your computer and use it in GitHub Desktop.
Save rossov/10438571 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
@iklobato
Copy link

Nice one! Ty!

@sallihin
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment