RInno RStudio中带有Shining的详细示例

RInno RStudio中带有Shining的详细示例,r,shiny,inno-setup,R,Shiny,Inno Setup,我需要制作多个闪亮的应用程序,超过了免费版shinny.io中允许的5个应用程序。所以我尝试使用RInno。我知道这是荒谬的,但对我来说这似乎太少了(他们称之为“最小示例”)。我根本不知道我该做什么。在本教程中,使用预加载的“示例”应用程序进行演示 # If you don't have development tools, install them install.packages("devtools"); require(devtools) # Use install_github to

我需要制作多个闪亮的应用程序,超过了免费版
shinny.io
中允许的5个应用程序。所以我尝试使用
RInno
。我知道这是荒谬的,但对我来说这似乎太少了(他们称之为“最小示例”)。我根本不知道我该做什么。在本教程中,使用预加载的“示例”应用程序进行演示

# If you don't have development tools, install them
install.packages("devtools"); require(devtools)

# Use install_github to get RInno
devtools::install_github("ficonsulting/RInno",  build_vignettes = TRUE)

# Require Package
require(RInno)

# Use RInno to get Inno Setup
RInno::install_inno()

# Example app included with RInno package
example_app(wd = getwd())

# Build an installer
create_app(app_name = "Your appname", app_dir = "app")
compile_iss()
当我在RStudio中运行此程序时,一个名为
app
的文件夹出现在我的工作目录中。我打开它可以找到以下内容(屏幕截图):

我现在该怎么办?我已尝试打开“Your appname”并按照设置说明操作(单击下一步>下一步>完成)。这将在我的桌面上设置一条名为“Your appname”的捷径。我打开此文件,但发现错误:

我做错什么了吗?这是虫子吗?从第一个屏幕截图打开
app
文件夹中的
html
文件夹,会显示一个绘图的html,我认为这就是示例。这正好适合我自己的需要。然而,当我尝试启动一个我自己现有的应用程序时

create_app(app_name = "existing app", app_dir = "path/to/existing/app")
compile_iss()
然后我甚至没有像屏幕截图中那样的
html
文件夹! 我现有的
shinny
应用程序的脚本在
RStudio
中,对吗?或者它需要在Inno安装脚本中吗


任何指针都会非常棒。干杯

你能分享你的应用程序的
日志/错误。日志
?我从未见过这个问题,日志中可能有一些线索。至于html文件夹,如果在你的
app_dir
中有一个名为
html
的子目录,RInno应该把它捡起来并与你的.exe一起发送