首先要在Python安装jupyter
pip install jupyter
已安装的忽略即可。
然后输入:
pypy3 -m pip install ipykernel
pypy3 -m ipython kernel install --user --name=PyPy3
注:需要将pypy3的目录添加到系统的环境变量中,不想添加的话自己转到pypy3.exe的目录下打开命令行输入命令就行。
再次打开jupyter,点击New
,看见PyPy3即安装成功。
参考stackoverflow:Is it possible to run a pypy kernel in the Jupyter notebook?