In the recent Anniversary Update, bash is included in addition to Insider Preview, but Jupyter boots, but there is a problem that the kernel crashes when trying to use notebook.
I wondered if something could be done, and after investigating various things, I applied a patch made by a person called aseering and it was quite good.
You can patch the environment used by notebook by executing the following command.
$ conda install -c jzuhone zeromq=4.1.dev0
If you have separate environments for each version of python, it looks like this.
$ source activate py35
(py35) $ conda install -c jzuhone zeromq=4.1.dev0
Reference: https://github.com/Microsoft/BashOnWindows/issues/185
There seems to be a patch for pip on the same page, so if you're not using conda, you may be able to use it.
Recommended Posts