简体   繁体   English

loadNamespace(name)中的错误:没有名为“ Rcompression”的软件包

[英]Error in loadNamespace(name) : there is no package called ‘Rcompression’

I am running a piece of code from RSelenium. 我正在从RSelenium运行一段代码。 I want to use my own Firefox browser profile to scrape websites. 我想使用自己的Firefox浏览器配置文件来抓取网站。

I am trying to run: 我正在尝试运行:

fprof <- getFirefoxProfile("C:/Users/Administrator/AppData/Roaming/Mozilla/Firefox/Profiles/x51kgfa5.default")
remDr <- remoteDriver(extraCapabilities = fprof)
remDr$open()

Unfortunately I am getting the Rcompression error. 不幸的是我遇到了Rcompression错误。

I have tried to locate an Rcompression package, but without any luck. 我试图找到一个Rcompression软件包,但是没有任何运气。 Any thoughts on a possible solution would be greatly appreciated. 任何对可能解决方案的想法将不胜感激。

You don't need the package if you useBase = TRUE : 如果您使用useBase = TRUE则不需要包:

fprof <- getFirefoxProfile("C:/Users/Administrator/AppData/Roaming/Mozilla/Firefox/Profiles/x51kgfa5.default", useBase=TRUE)
remDr <- remoteDriver(extraCapabilities = fprof)
remDr$open()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 loadNamespace(name) 错误:没有名为“Rcpp”的包 - Error in loadNamespace(name) : there is no package called 'Rcpp' loadNamespace(name)中的错误:没有名为“ RInside”的软件包 - Error in loadNamespace(name) : there is no package called 'RInside' loadNamespace(name) 中的错误:没有名为“evaluate”的包 - Error in loadNamespace(name) : there is no package called 'evaluate' 在R中运行Quandl“loadNamespace(name)中的错误:没有名为&#39;curl&#39;的包 - Running Quandl in R “Error in loadNamespace(name) : there is no package called ‘curl’” 安装Rcompression软件包时出错 - Error installing the Rcompression package knitr :: knit2pdf [loadNamespace(name)中的错误:没有名为“ tinytex”调用的程序包] - knitr::knit2pdf [Error in loadNamespace(name) : there is no package called 'tinytex' Calls] Rstudio中的Rstudio knit pdf loadNamespace(name):没有名为'rmarkdown'的包 - Rstudio knit pdf in Rstudio loadNamespace(name): there is no package called 'rmarkdown' 对于Copula包,R中的loadNamespace出错 - Error in loadNamespace in R for Copula package R package 错误:package 或加载命名空间中“reshape2”的命名空间加载失败:没有名为“magrittr”的 package - R package Error: package or namespace load failed for ‘reshape2’ in loadNamespace: there is no package called ‘magrittr’ 为什么我在使用之前有效的 ggplot2 代码时收到错误消息? (loadNamespace(x) 中的错误:没有名为“labeling”的 package) - Why I receive error using ggplot2 code that worked before? (Error in loadNamespace(x) : there is no package called ‘labeling’)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM