tamuhey
tamuhey

Reputation: 3525

How to use ipython kernel running in docker container from Jupyter Notebook running in host machne?

I want to use ipython kernel inside a docker container from Jupyter Notebook running in my host machine.

I know I can use the kernel by installing Jupyter into the container, but it is not I want to do. That's because I'm using some extensions of Jupyter Notebook (e.g. vim), and I want to use them when I use the kernel inside docker container.

What should I do?

Upvotes: 6

Views: 2682

Answers (1)

bellackn
bellackn

Reputation: 2174

Have a look at this GitHub repo, there you can find a complete example of how to run IPython inside Docker.

Upvotes: 4

Related Questions