install.packages省略了源文件

问题描述 投票:0回答:1

R可以很容易地安装包,例如,

install.packages("rmarkdown")

这很好用,并得出结论

The downloaded source packages are in
    ‘/tmp/Rtmpb9da02/downloaded_packages’`

但在此之后,目录/usr/local/lib/R/site-library/rmarkdown/R只包含3个文件:rmarkdownrmarkdown.rdbrmarkdown.rdx

相比之下,刚刚下载的/tmp/Rtmpb9da02/downloaded_packages/rmarkdown_1.11.tar.gz将提供相应的目录rmarkdown/R以及完整的源文件:

base64.R                html_vignette.R            render_html.R
beamer_presentation.R   includes.R                 render.R
draft.R                 ioslides_presentation.R    render_site.R
github_document.R       knit_print.R               rtf_document.R
html_dependencies.R     latex_dependencies.R       shiny_module.R
html_document_base.R    list_builder.R             shiny_prerendered.R
html_document.R         md_document.R              shiny.R
html_extras.R           odt_document.R             slidy_presentation.R
html_fragment.R         output_format.R            stack.R
html_notebook_output.R  pandoc.R                   tufte_handout.R
html_notebook.R         params.R                   util.R
html_paged.R            pdf_document.R             word_document.R
html_parser.R           performance.R              zzz.R
html_resource_copy.R    powerpoint_presentation.R
html_resources.R        relative_to.R

为什么要隐瞒来源?

我该如何获得它们?除了tar zxf,还有一种“最佳实践”方法吗?我正在寻找一个允许我修改一个或多个源文件,重新构建包并将其重新加载到我的R进程中的安装。一个额外的好处是与源代码后面的源代码控制系统挂钩,例如git。

r install.packages
1个回答
1
投票

您可以像下载源代码一样,根据需要修改R文件并重新安装:

install.packages('/path/to/my_rmarkdown_1.11', repos= NULL, type= 'source')
© www.soinside.com 2019 - 2024. All rights reserved.