安装juypter
在cmd
中输入指令:
python -m pip install jupyter notebook
如果下载不了,可以在后面添加国内镜像;
运行Jupyter notebook
在cmd
中输入jupyter notebook
就可以打开了,但是我当时出现了一些问题,报错:Fatal error in launcher: Unable to create process using '"d:\python\python.exe" "D:\python\Scripts\jupyter.exe" notebook': ???????????
解决方法:
我当时在cmd
中输入where python
找到对应的python.exe
所在的位置,接着将这个位置下的python.exe
移到报错的位置下,再运行jupyter notebook
就可以了;
运行对应代码
将需要运行的代码upload
上去,接着运行
就可以得到对应的结果了。