A Chrome extension used to quick start Jupyter Lab in chrome control bar.
If you like it, please star
Currently it supports Mac OS, Windows and Linux (Ubuntu tested).
- Download and put whole directory into a folder.
- In Chrome, go to
chrome://extensions
in address box - Turn on
Developer mode
- Drag
app
folder into Chrome window, to install the extension in Developer mode - Now you can see this extension appears on the window, copy the
ID
of this extension, editcom.codpls.jupyter.chrome.starter.json
inhost
folder, replaceextensionidstring
with this ID - Using terminal to run
./install_host.sh
- Enjoy
The host depends on the commands of Jupyter Lab. Make sure you can execute the following commands (add the path to Environment Variable).
If not working, please make a symbolic link of jupyter
to /usr/local/bin/jupyter
, i.e. ln -s /path-to-your-jupyter/jupyter /usr/local/bin/jupyter
jupyter lab ~/
jupyter notebook stop [port]
jupyter notebook list
Some part of code are modified from Google Chrome Extension example.