Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
309 views
in Technique[技术] by (71.8m points)

How to recover deleted iPython Notebooks

I have iPython Notebook through Anaconda. I accidentally deleted an important notebook, and I can't seem to find it in trash (I don't think iPy Notebooks go to the trash).

Does anyone know how I can recover the notebook? I am using Mac OS X.

Thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This is bit of additional info on the answer by Thuener,

I did the following to recover my deleted .ipynb file.

  1. The cache is in ~/.cache/chromium/Default/Cache/ (I use chromium)
  2. used grep in binary search mode, grep -a 'import math' (replace search string by a keyword specific in your code)
  3. Edit the binary file in vim (it doesn't open in gedit)
    • The python ipynb should file start with '{ "cells":' and
    • ends with '"nbformat": 4, "nbformat_minor": 2}'
    • remove everything outside these start and end points
  4. Rename the file as .ipynb, open it in your jupyter-notebook, it works.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...