有没有一种方法可以在Jupyter中运行没有单元输出的命令行命令?
例如
!wget http://files.fast.ai/data/dogscats.zip -P ./data/
没有在我的单元中打印过程吗?
答案 0 :(得分:3)
最早的技巧起作用:
!wget ... >/dev/null 2>&1
或使用--err
option:
In [1]: %%bash --err null
...: wget ...
这实际上将stderr
的输出存储到变量null
中。