jupyter notebook "the save operation succeeded, but the notebook does not appear to be valid. The validation error was" 에러

안녕하세요 jay입니다.
오늘은 juypter notebook에서 발생하는 
'the save operation succeeded, but the notebook does not appear to be valid. The validation error was" 에러에 대해 해결해보겠습니다.
방법은 간단합니다.



어느 특정 코드가 있는 jupyter notebook을 실행하니 위와 같은 에러메세지가 계속 발생했습니다.
해결하는 법은 상당히 간단합니다.

pip install nbformat

만약 이미 nbformat이 있다고 나오면
pip install -U nbformat
위의 코드로 업데이트를 해주시면 됩니다.

댓글