Unable to run ipython-notebook 2.7 with jupyterhub

pulkitag

I am trying to run ipython 2.7 notebooks with jupyterhub on Ubuntu 14.04 - but I haven't been able to figure out a way. Any suggestions?

I know one needs to add kernels in the file ~/.ipython/kernels.json I have the following in this file:

{
 "argv": ["python3", "-m", "IPython.kernel",
          "-f", "{connection_file}"],
 "display_name": "Python 3",
 "language": "python"
}
{
 "argv": ["python2.7", "-m", "IPython.kernel",
      "-f", "{connection_file}"],
 "display_name": "Python 2",
 "language": "python"
}   
Matt

~/.ipython/kernels.json is not the right path. And theses files are not ment to be edited by hand. Also the file you have is not valid json, the server will be unable to read it if it was in the right place.

use python2.7 -m IPython kernelspec install-self and python3 -m IPython kernelspec install-self for IPython to put the right files in the right locations.

That being said, even with the kernels files wrong you shoudl be able to start jupyterhub. Do you have other error messages ?

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Unable to run ipython-notebook 2.7 with jupyterhub

From Dev

Unable to run ipython notebook or anaconda (conda) commands in terminal

From Dev

IPython notebook - unable to export to pdf

From Dev

IPython notebook - unable to export to pdf

From Dev

Ipython notebook on 2 columns

From Dev

How to run GraphX on IPython Notebook?

From Dev

plotting in ipython notebook in 2 steps

From Dev

Unable to plot worldmap with Vincent in iPython notebook

From Dev

Run ipython notebook from a remote server

From Dev

run ipython notebook remotely through ssh tunneling

From Dev

Ipython Notebook: how to run multiple cells?

From Java

Automatically run %matplotlib inline in IPython Notebook

From Dev

Run IPython notebook with Spark in another directory

From Dev

Is there a way to run multiple cells simultaneously in IPython notebook?

From Dev

Is there a way to run scala code in the ipython notebook?

From Dev

Run ipython notebook in different anaconda environment (in script)

From Dev

How to "Run ALL" in IPython Notebook in PyCharm?

From Dev

Run ipython notebook server and close terminal

From Dev

Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

From Dev

Running IPython Notebook within Sublime Text 2

From Dev

Running IPython Notebook within Sublime Text 2

From Dev

Launch pyspark Ipython notebook on ec2

From Dev

Does ipython notebook 'run all cells' execute simultaneously or in sequence?

From Dev

How to run an ipython notebook in parallel just changing some parameter values?

From Dev

How to run IPython notebook server with a specified URL route

From Dev

Unable to run Jupyter notebook, but running qtconsole

From Dev

Best way to run Julia code in an IPython notebook (or Python code in an IJulia notebook)

From Dev

Unable to run Hadoop on windows 7

From Dev

Default notebook directory in iPython Notebook - iPython 3.0.0

Related Related

  1. 1

    Unable to run ipython-notebook 2.7 with jupyterhub

  2. 2

    Unable to run ipython notebook or anaconda (conda) commands in terminal

  3. 3

    IPython notebook - unable to export to pdf

  4. 4

    IPython notebook - unable to export to pdf

  5. 5

    Ipython notebook on 2 columns

  6. 6

    How to run GraphX on IPython Notebook?

  7. 7

    plotting in ipython notebook in 2 steps

  8. 8

    Unable to plot worldmap with Vincent in iPython notebook

  9. 9

    Run ipython notebook from a remote server

  10. 10

    run ipython notebook remotely through ssh tunneling

  11. 11

    Ipython Notebook: how to run multiple cells?

  12. 12

    Automatically run %matplotlib inline in IPython Notebook

  13. 13

    Run IPython notebook with Spark in another directory

  14. 14

    Is there a way to run multiple cells simultaneously in IPython notebook?

  15. 15

    Is there a way to run scala code in the ipython notebook?

  16. 16

    Run ipython notebook in different anaconda environment (in script)

  17. 17

    How to "Run ALL" in IPython Notebook in PyCharm?

  18. 18

    Run ipython notebook server and close terminal

  19. 19

    Anaconda: Python 3 and 2 in IPython/Jupyter Notebook

  20. 20

    Running IPython Notebook within Sublime Text 2

  21. 21

    Running IPython Notebook within Sublime Text 2

  22. 22

    Launch pyspark Ipython notebook on ec2

  23. 23

    Does ipython notebook 'run all cells' execute simultaneously or in sequence?

  24. 24

    How to run an ipython notebook in parallel just changing some parameter values?

  25. 25

    How to run IPython notebook server with a specified URL route

  26. 26

    Unable to run Jupyter notebook, but running qtconsole

  27. 27

    Best way to run Julia code in an IPython notebook (or Python code in an IJulia notebook)

  28. 28

    Unable to run Hadoop on windows 7

  29. 29

    Default notebook directory in iPython Notebook - iPython 3.0.0

HotTag

Archive