Jupyterの起動
$ jupyter notebook
httpサーバの起動
$ python -m SimpleHTTPServer 8888 & // python 2.x
または
$ python
>>> import SimpleHTTPServer
>>> SimpleHTTPServer.test()