Is there a way to run multiple cells simultaneously in IPython notebook?

Yes. Here is the documentation for ipyparallel (formerly IPython parallel) that will show you how to spawn multiple IPython kernel. After you are free to distribute the work across cores, and you can prefix cells with %%px0 %%px1… %%px999 (once set up) to execute a cell on a specific engine, which in practice correspond to … Read more

Turn off auto-closing parentheses in ipython

@minrk’s answer is the meat and bones of the fix, but you’ll need to wrap it in an initialization callback, at least with IPython-3.1.0. In your custom.js: require([‘base/js/namespace’, ‘base/js/events’], function(IPython, events) { events.on(‘app_initialized.NotebookApp’, function() { IPython.CodeCell.options_default.cm_config.autoCloseBrackets = false; }); }); Thanks @Mike for your comment about IPython’s RequireJS dependency loading and the pointer to a … Read more

Running an IPython/Jupyter notebook non-interactively

Yes it is possible, and easy, it will (mostly) be in IPython core for 2.0, I would suggest looking at those examples for now. [edit] $ jupyter nbconvert –to notebook –execute original.ipynb –output=new.ipynb It is now in Jupyter NbConvert. NbConvert comes with a bunch of Preprocessors that are disabled by default, two of them (ClearOutputPreprocessor … Read more

Change IPython/Jupyter notebook working directory

jupyter notebook –help-all could be of help: –notebook-dir=<Unicode> (NotebookManager.notebook_dir) Default: u’/Users/me/ipynbs’ The directory to use for notebooks. For example: jupyter notebook –notebook-dir=/Users/yourname/folder1/folder2/ You can of course set it in your profiles if needed, you might need to escape backslash in Windows. Note that this will override whatever path you might have set in a jupyter_notebook_config.py … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)