与notebook有关的错误解决

#1. 500 : Internal Server Error
#2. Python.exe无法找到入口,无法定位程序输入点
#3. RuntimeError: This event loop is already running
KernelRestarter: restart failed
Kernel 324bdc0e-eb19-41d1-ad54-6d521ab4cdba died,removing from map.
1.在虚拟环境中安装tensorflow,
用pip install tensorflow - i +镜像地址
随后在Navigoter里安装notebook
安装之后发现notebook 打开后报错500 : Internal Server Error
在这里插入图片描述
经查,pip install --upgrade --user nbconvert
可解
执行后,发现解决了问题500 : Internal Server Error,

2.但有新的问题
Python.exe无法找到入口,无法定位程序输入点
Tensorflow是我的虚拟环境名称
与notebook有关的错误解决_第1张图片
Pythoncom36.dll文件的具体位置是
C:\Users\Zz\Anaconda3\envs\tensorflow\Lib\site-packages\pywin32_system32

经查
这样的同名文件在tensorflow下有多个(在虚拟环境目录下搜索pythoncom36.dll),只留下
C:\Users\Zz\Anaconda3\envs\tensorflow\Lib\site-packages\pywin32_system32
一个,其余删除。
入口无法找到问题解决。

3.又出现新的问题:
RuntimeError: This event loop is already running
KernelRestarter: restart failed

Kernel 324bdc0e-eb19-41d1-ad54-6d521ab4cdba died, removing from map.
经查,用pip install --upgrade ipykernel
可以解决。
至此,tensorflow安装完成

你可能感兴趣的:(与notebook有关的错误解决)