怎么在pycharm中使用jupyter[jupyter使用教程]

python


步骤:

0、安装Jupyter

pip install jupyter

1、新建一个IPython文件

这里我在文件夹上直接右键->New->Jupyter Notebook,和File一样。

2、编写程序

import time

print(time.ctime())

print('hello Jupyter!')

随便写点什么测试一下,应该得到的结果是这样的:

3、Run

点击Run Cell,对就是那个绿色三角形。

它会弹框提示:

让你输入token

对我就是被这个坑了。

其实应该先在Terminal里运行Jupyter Notebook,就会出现如下结果:

把这个复制到刚才那个对话框里,就能愉快地使用Jupyter了。

另,在cmd里输入jupyter notebook list可以查询当前的列表。

Python学习网,有大量免费的Jupyter使用教程,欢迎大家学习!

以上是 怎么在pycharm中使用jupyter[jupyter使用教程] 的全部内容, 来源链接: utcz.com/z/525882.html

回到顶部