在线可运行代码的文档编辑器 jupyter

匿名 (未验证) 提交于 2019-12-03 00:02:01

https://jupyter.org/

Installing Jupyter with pip
As an existing or experienced Python user, you may wish to install Jupyter using Python’s package manager, pip, instead of Anaconda.

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 

Congratulations, you have installed Jupyter Notebook! To run the notebook, run the following command at the Terminal (Mac/Linux) or Command Prompt (Windows):

jupyter notebook 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!