Launch IPython notebook with selected browser

I had the same problem on windows and got it work this way: Create a config file with command ipython profile create default Edit ipython_notebook_config.py file, search for line #c.NotebookApp.browser=”” and replace it with import webbrowser webbrowser.register(‘firefox’, None, webbrowser.GenericBrowser(‘C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe’)) c.NotebookApp.browser=”firefox” then it works for me. Hope it will help you. JPG

Anaconda not found in ZSh?

Altough I cannot test it on a Mac, (I have a Linux Zsh installed) this should work for you as well: Just execute /(your conda installation path)/bin/conda init zsh and restart your zsh shell. The init command will change your ~/.zshrc file accordingly, setting your PATH correctly and slightly change the PS1 (which is was … Read more

How do I delete/refresh available kernels for IPython/Jupyter notebook v4.0?

After a brute force search, Jupyter stores kernel info for OS X in /Users/${USER}/Library/Jupyter/kernels. This list got copied across from my .ipython/kernels list hence renaming it made no difference. Removing /Users/${USER}/Library/Jupyter/kernels fixes the issue. This is the reference I was looking for: http://jupyter-client.readthedocs.org/en/latest/kernels.html#kernelspecs