由于很长时间没用python了,加之电脑之前出点问题,重新安装了anaconda
首先遇到了问题1:
就是能访问,但是不能创建
搜索之后发现和这位大哥遇到的情况类似:
https://blog.csdn.net/qq_44867456/article/details/118439589
使用jupyter创建python时错误Creating Notebook Failed或者occurred while creating a new notebook
解决的办法:
打开Anaconda Prompt,输入如下命令,然后执行。 jupyter notebook --generate-config,覆盖原来的配置文件。
接着就遇到了问题2:
就是新建jupyter notebook,但是提示kernel error
问题又和这位老兄的情况差不多https://blog.csdn.net/sinat_21791203/article/details/108340526
原因也是因为改变anaconda安装的路径,于是照着他的方法完美解决。
在Anaconda Prompt中输入:
jupyter kernelspec list
image.png
找到python3所在的文件夹
image.png
打开json文件
image.png
将原来的python路径更改为现在的路径即可。
image.png
网友评论