当前位置 : 主页 > 编程语言 > python >

如何安装jupyter

来源:互联网 收集:自由互联 发布时间:2021-08-10
安装jupyter的方法:首先打开命令提示符,输入python;然后执行jupyter的安装命令“pip install jupyter”;最后执行jupyter的启动命令“jupyter notebook --ip=0.0.0.0”即可。 本文操作环境:windows7系

安装jupyter的方法:首先打开命令提示符,输入python;然后执行jupyter的安装命令“pip install jupyter”;最后执行jupyter的启动命令“jupyter notebook --ip=0.0.0.0”即可。

本文操作环境:windows7系统、python3.6.4版,DELL G3电脑。

打开命令提示符,输入python,保证python能够正常运行,如下面图中所示。

4a96172f14d58cae6b269d9efcd5867.png

然后执行jupyter的安装命令:

pip install jupyter

pip会自动下载jupyter对应的依赖,然后安装完成。如下面第二张图中所示,比linux版本上安装的包好像要多一些。

8543b690b5ef18008fc0f8c114fd534.png

安装完成后,执行jupyter的启动命令:

jupyter notebook --ip=0.0.0.0 --port=8000

网友评论