我在Rstudio $version [1] ‘2023.3.0.386’
(R版本4.2.3
)中打开了一个新项目,并启动了renv。
初始化正常运行,但是,在完成R会话冻结之后。
当我重新启动RStudio时,R会话再次冻结。
控制台将显示以下内容:
R version 4.2.3 (2023-03-15 ucrt) -- "Shortstop Beagle"
Copyright (C) 2023 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
* Project 'xx/_analysis' loaded. [renv 0.17.2-24]
当我打开一个没有renv的项目时,R不会冻结。
我尝试的内容:
我试图删除R项目和renv文件夹,并创建一个新的R项目,但是,我得到了同样的错误。
更新:我现在删除了R,Rtools和RStudio,删除了所有R包文件,并重新安装了所有内容(用install_github("rstudio/renv")
进行renv,运气不好,如果我现在启动renv::init()
,它会挂起
如何查找可能的原因/调试?
2条答案
按热度按时间ylamdve61#
感谢polkas的评论,我可以使用
browser()
调用适当地调试renv::init()
。结果:
renv::init(bare=TRUE)
(即初始化项目而不尝试发现和安装R包依赖项)工作.R
脚本解决方案:
renv
扫描所有文件在我的例子中,我写了一个renvignore file(不包括所有.txt文件)并将其存储在项目文件夹中。最后,renv再次按预期工作。
lp0sw83n2#
试试
options(renv.download.override = utils::download.file)
类似问题:https://community.rstudio.com/t/cant-install-packages-with-renv/96696