解决tensorflow虚拟环境下运行jupyternotebook报错RuntimeError: This event loop is already running

问题描述:重新在虚拟环境中安装了tensorflow1.2.1,python3.6.15

在新的虚拟环境中下载完毕jupyter,将将虚拟环境添加jupyter notebook中,使用ipykernel生成虚拟环境的kernel后,发现notebook依旧连接不上内核,并且报错:RuntimeError: This event loop is already running

在conda终端中执行

pip install --ignore-installed ipykernel --upgrade

出现下图类似错误,就是对应库版本不对

解决tensorflow虚拟环境下运行jupyternotebook报错RuntimeError: This event loop is already running_第1张图片

解决tensorflow虚拟环境下运行jupyternotebook报错RuntimeError: This event loop is already running_第2张图片

逐一替换这些库的版本

方法:卸载当下报错的库,pip uninstall +库name ==版本,再pip install + 库name,会自动下载对应的库版本

  • 拿将bleach3.0.0替换为正确版本的库举例:
  1. pip uninstall bleach==3.0.0(错误版本)
  2. pip install bleach(自动下载正确版本)

解决tensorflow虚拟环境下运行jupyternotebook报错RuntimeError: This event loop is already running_第3张图片

重启jupyter,发现内核已就绪 

问题解决方法来自于这位博主 

你可能感兴趣的:(tensorflow,人工智能,python)