Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

importerror : cannot import name 'secure_write' while updating python in conda evironment

Tags:

python-3.x

I want to update my python version to python 3.6 ,
I am using conda environment therefore used the following command on the terminal :
conda install python=3.6

while installation I'm encountered with this error : importerror : cannot import name 'secure_write'
Any help???

like image 387
Shreya Sharma Avatar asked Nov 10 '19 20:11

Shreya Sharma


1 Answers

Upgrade the jupyter client

pip install --upgrade jupyter_client

This error was reported for jupyter client at https://github.com/jupyter/notebook/issues/5014

like image 114
abhilb Avatar answered Oct 17 '22 22:10

abhilb