-
-
Save suriyadeepan/72f84263e856d697ae660e620deb9310 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 | |
# 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