简体   繁体   中英

Script to run a jupyter notebook automatically

I have a jupyter notebook with both html and python code in it. Is it possible to write a script that will launch the notebook and run it in the browser? Most solutions on the web refer to running these scripts from the command line, but I want them to show up on the

I'm not sure what OS you're on, but here's a small batch file that moves into my directory with my .ipynb files, starts Jupyter, and then opens a specific notebook of mine:

cd "%userprofile%\desktop\att"
start chrome.exe http://localhost:8888/notebooks/ATT_SQL.ipynb#
jupyter notebook

I just put this on my desktop and double click it to start Jupyter. Just replace your notebook's name where mine is ATT_SQL.ipynb# . You'll also have to change the cd command as well.

Edit: Or better yet:

cd %userprofile%\path\to\your\jupyter\dir
jupyter notebook yourNotebook.ipynb

Source

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM