简介
Jupyter Notebook 的本质是一个 Web 应用程序,便于创建和共享文学化程序文档,支持实时代码,数学方程,可视化和 markdown。用途包括:数据清理和转换,数值模拟,统计建模,机器学习等等。
安装
直接pip安装即可
pip install jupyter # 注:Jupyter安装需要Python 3.3或更高版本,或Python 2.7 # 检查是否安装 >pip show jupyter Name: jupyter Version: 1.0.0 Summary: Jupyter metapackage. Install all the Jupyter components in one go. Home-page: http://jupyter.org Author: Jupyter Development Team Author-email: jupyter@googlegroups.org License: BSD Location: c:\users\zhuzhupoo\appdata\local\programs\python\python39\lib\site-packages Requires: ipykernel, ipywidgets, jupyter-console, nbconvert, notebook, qtconsole Required-by:
启动
可以给jupyter设置密码
jupyter notebook password Enter password: Verify password: [NotebookPasswordApp] Wrote hashed password to C:\Users\zhuzhupoo\.jupyter\jupyter_notebook_config.json
jupyter notebook --port 8888 # 端口可以自定义,此时会自动打开浏览器访问这个地址
如果不想jupyter自动打开浏览器可以用以下命令
jupyter notebook --no-browser # 比如linux安装了jupyter,但是无桌面,即可采用这个命令,然后windows去访问
打开jupyter之后用的最多的就是截图中的操作了,可以帮我们进行代码的编写,同时有代码补全的功能。 复制成功,转载请保留本站链接: www.chenjiao.cloud