8

I work with many conda environments in my workflow and like to use the hydrogen package for the Atom Editor when I am exploring objects. However I always forget how to add a new jupyter kernel to the new environments even though it is only two lines of code.

What are those lines of code?

rgalbo
  • 4,186
  • 1
  • 19
  • 29

1 Answers1

15

Here is the link to the github issue where the comment is answered.

The two lines of code to be run in your terminal are these:

source activate YourEnvNameHeRE
python -m ipykernel install --user --name YourEnvNameHeRE

After you run these two lines and restart Atom, you will now be prompted to choose which environment you use when evaluating code using Hydrogen.

rgalbo
  • 4,186
  • 1
  • 19
  • 29