Thomas Kluyver
Thomas Kluyver
It is expected, though we know it's a confusing difference. In the terminal, we expect `%edit` to open a terminal editor, which only returns control to IPython when the user...
I think the discussion has caused some confusion. The restrictions of other frontends are not preventing that feature in `jupyter_console`. It's not there simply because no-one has implemented it.
If you run `ipython console`, it's just a synonym for `jupyter console`. We kept all the old commands working when we split off Jupyter, though they'll probably go away eventually....
``` File "/home/worker/sage-patchbot/local/lib/python2.7/site-packages/jupyter_core/application.py", line 243, in initialize self.migrate_config() ``` It's the base Jupyter application trying to migrate IPython config to Jupyter. It will skip this if either: 1. `~/.jupyter/migrated` exists,...
That looks like a Windows error. On Windows, `!` runs Windows commands.
You can run the notebook inside a Linux virtual machine (e.g. with [Virtualbox](https://www.virtualbox.org/)), or inside the new 'Windows Subsystem for Linux', which acts a lot like a virtual machine, though...
That's a bit puzzling, because it's definitely been importable in an IPython kernel previously - see e.g. https://github.com/gotcha/ipdb/issues/52 . But it looks like a few other people have reported a...
Should be fixed by https://github.com/gotcha/ipdb/pull/143
The JS config API: ConfigSection loads data from the server and sends updated data. main.js will do something like this: ``` javascript config = new configmod.ConfigSection('notebook'); config.load(); // Returns immediately,...
Sorry, yes, the first line of that example should have been more like this: ``` javascript config = new configmod.ConfigSection('notebook', {base_url: base_url}); ``` Since that should generally be created by...