Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

docker

jupyter

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?

like image 898
Yohei Avatar asked Oct 16 '22 12:10

Yohei


1 Answers

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

like image 173
bellackn Avatar answered Oct 19 '22 01:10

bellackn