【发布时间】:2019-03-01 02:53:45
【问题描述】:
我有这个 .sh 安排在 cron (ubuntu 18) 中:
#!/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 ,它的性能会很好。有什么想法吗?
【问题讨论】:
标签: cron jupyter execute nbconvert