Last active
June 19, 2022 23:02
-
-
Save rossov/10438571 to your computer and use it in GitHub Desktop.
Install ipython3 on Mac OS X Mavericks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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
Nice one! Ty!