Last active
April 19, 2018 14:12
-
-
Save walsvid/8b86a3136de0522ccb1c024f8d3055ae to your computer and use it in GitHub Desktop.
[Ubuntu16.04 Jupyter 安装] Install guide of jupyter #python #jupyter
This file contains hidden or 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
| # If you have Python 3 installed (which is recommended): | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install jupyter | |
| # If you have Python 2 installed: | |
| # python -m pip install --upgrade pip | |
| # python -m pip install jupyter | |
| # Add python2 kernel | |
| python2 -m pip install ipykernel | |
| python2 -m ipykernel install --user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment