本文介绍了通过终端启动和终止闪亮的应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过终端启动 Shiny 应用程序my_shiny".
How can I launch the Shiny App, "my_shiny" through the terminal.
另外,我如何仅通过终端终止或关闭应用程序.
Also, how do I terminate or close the app through the terminal only.
推荐答案
试试这个:
Rscript -e 'library(methods); shiny::runApp("my_shiny/", launch.browser = TRUE)'
这篇关于通过终端启动和终止闪亮的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!