I have always wondered if it were possible to run PyPy in the Jupyter notebook. I recently tried installing PyPy on my local machine, and it ran really well – 100X speedup in an agent-based simulation written in pure Python. However, I miss the interactivity in the Jupyter notebook. Is it possible to make the IPython kernel use PyPy rather
Tag: jupyter
How to include two pictures side by side in Markdown for IPython Notebook (Jupyter)?
I am trying to insert two pictures side by side in one Markdown cell on a notebook. The way I do it was: in order to be able to size the included picture. Can anyone gives suggestions on top of this? Thanks, Answer JMann’s solution didn’t work for me. But this one worked I took the idea from this notebook
Simple way to measure cell execution time in ipython notebook
I would like to get the time spent on the cell execution in addition to the original output from cell. To this end, I tried %%timeit -r1 -n1 but it doesn’t expose the variable defined within cell. %%time works for cell which only contains 1 statement. What’s the best way to do it? Update I have been using Execute Time
How to close IPython Notebook properly?
How to close IPython Notebook properly? Currently, I just close the browser tabs and then use Ctrl+C in the terminal. Unfortunately, neither exit() nor ticking Kill kernel upon exit does help (they do kill the kernel they but don’t exit the iPython). Answer There isn’t currently a better way to do it than Ctrl+C in the terminal. We’re thinking about