Grant Nestor
Grant Nestor
@galou Thanks for taking a stab at this. First, you will want to follow the [dev install instructions](https://github.com/jupyter/atom-notebook#install-1) (that's why you are seeing `Cannot find module 'pathwatcher'`). After that, you...
@glopesRobot Good catch! Feel free to submit a PR for this fix 👍
This repo is not being actively maintained 🙁 In the meantime, I suggest that you look at [hydrogen](https://github.com/nteract/hydrogen) to run code inline in Atom's text editor, [nteract](https://github.com/nteract/nteract) (a new Jupyter...
It sounds like whatever is being returned from the kernel is causing `outputs[index].data` to return a string vs. array, hence the error. We are about to refactor a lot of...
@cnHeider It sounds like jupyter is not in Atom's PATH, therefore the `jupyter kernelgateway`command used by atom-notebook is not spawning a kernel gateway instance. 1. Run `which jupyter` or `jupyter...
This repo is not being actively maintained 🙁 In the meantime, I suggest that you look at [hydrogen](https://github.com/nteract/hydrogen) to run code inline in Atom's text editor, [nteract](https://github.com/nteract/nteract) (a new Jupyter...
Try setting the path of your jupyter binary in Atom > Settings > Packages > jupyter-notebook > Settings > Path to jupyter binary. If you don't know your jupyter path,...
Have you confirmed the jupyter path that you added in terminal?
Related https://github.com/jupyter/atom-notebook/issues/29
1. Add your jupyter path to your Atom path in your init script (Command Palette > Init Script): process.env.PATH = process.env.PATH + ';YOUR_PATH' 2. Reload Atom (Command Palette > Reload)...