Questions tagged [ipycache]

jupyter notebook extension, part of jupyter_contrib_nbextensions. Defines %%cache cell magic in the IPython notebook to cache results and outputs of long-lasting computations in a persistent pickle file.

ipycache is a jupyter notebook extension, part of jupyter_contrib_nbextensions. It defines a %%cache cell magic in the IPython notebook to cache results and outputs of long-lasting computations in a persistent pickle file. It is useful when some computations in a notebook are long and you want to easily save the results in a file.

2 questions
2
votes
2 answers

Can't find module cPickle in poetry and jupyter

I am trying to cache some variables in Jupyter notebook cells that are big and take long to compute. I use Ubuntu 20.04 and Python 3.8. I added ipycache in my pyproject.toml file and it was successfully installed with Poetry. Then, I added %load_ext…
KLaz
  • 446
  • 3
  • 11
0
votes
1 answer

jupyter extensions: ipycache: How to clear cache

Jupyter extensions is a set of extensions to Jupyter Notebook that allow for all sorts of customizations. ipycache allows caching the contents of computed cells to save computation time as in this example. Is there a way to explicitly invalidate…
ntg
  • 12,950
  • 7
  • 74
  • 95