jupyter nbconvert 执行到 html cron 作业不工作

jupyter nbconvert execute to html cron job not working

我要在 cron (ubuntu 18) 中安排这个 .sh:

#!/bin/sh
wget -O x/doc1.csv  https://www.x.com
wget -O x/doc2.csv  https://www.y.com
jupyter nbconvert --execute --to html x/notebook.ipynb

前两行完美运行,但 jupyter 行不完美。如果我在终端中直接使用 ./ 执行 .sh,它会执行得很好。有什么想法吗?

我只是将路径添加到命令中,它起作用了:

#!/bin/sh
wget -O x/doc1.csv  https://www.x.com
wget -O x/doc2.csv  https://www.y.com
/home/pakin/anaconda3/bin/jupyter nbconvert --execute --to html 
x/notebook.ipynb