Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ipython notebook multiple instances on different ports

I would like to have multiple instances of ipython notebook running on different ports for the same user. Is it possible?

Something like a list of ports for 'NotebookApp.port' with a default one.

like image 922
Mrinal Avatar asked Jun 13 '17 05:06

Mrinal


2 Answers

Just run jupyter notebook a second time; it will automatically select another port to use.

like image 101
cco Avatar answered Nov 15 '22 21:11

cco


run jupyter notebook --port=8090

change 8090 for the port you want

like image 20
Manuel Cuevas Avatar answered Nov 15 '22 20:11

Manuel Cuevas