【发布时间】:2019-11-10 20:46:28
【问题描述】:
我想将我的 python 版本更新到 python 3.6,
我正在使用 conda 环境,因此在终端上使用了以下命令:conda install python=3.6
安装时遇到此错误:importerror : cannot import name 'secure_write'
有什么帮助???
【问题讨论】:
标签: python-3.x
我想将我的 python 版本更新到 python 3.6,
我正在使用 conda 环境,因此在终端上使用了以下命令:conda install python=3.6
安装时遇到此错误:importerror : cannot import name 'secure_write'
有什么帮助???
【问题讨论】:
标签: python-3.x
升级 jupyter 客户端
pip install --upgrade jupyter_client
https://github.com/jupyter/notebook/issues/5014https://github.com/jupyter/notebook/issues/5014jupyter 客户端报告此错误
【讨论】:
首先我做到了 pip 卸载 jupyter_client 然后 点安装 jupyter_client 这帮助我修复了错误
【讨论】:
这个制作很简单。
conda install -c conda-forge jupyterlab
【讨论】: