search for: versioncheck

Displaying 20 results from an estimated 62 matches for "versioncheck".

2014 Nov 26
3
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
...erbose or lacking in crucial detail or in the wrong format) please let me know I am trying to understand when the version constraints for packages which appear in the Imports field of a DESCRIPTION file are checked. Along the way I've hit a snag understanding what loadNamespace with the versionCheck argument set does. The core of my query is 'am I doing something wrong, or have I stumbled across a bug?'. Probably the former, but after several days I still can't figure it out, so any guidance, hints or outright help would be much appreciated. Thanks in advance Geoff Wh...
2014 Nov 27
2
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Hi Duncan The difference is that in your call to loadNamespace, the versionCheck list has 3 components (name, op and version), whereas the documentation only mentions 2 (op and version). loadNamespace 'works' for me provided I add a third component to the list (even a nonsense one). What I haven't yet had the fortitude to do is track down through the code to see wh...
2014 Nov 27
2
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
...for package1 became apparent (well apparentish after quite a bit of digging) -----Original Message----- From: Duncan Murdoch [mailto:murdoch.duncan at gmail.com] Sent: Thursday, 27 November 2014 10:57 AM To: Geoff Lee; r-devel at r-project.org Subject: Re: [Rd] Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked) Summary: I think you've found a bug. On 26/11/2014, 5:39 PM, Geoff Lee wrote: > Hi > > > > I'm still exploring the R programming universe, so if this is being > asked in the wrong place, or in t...
2014 Nov 27
1
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
Hi Duncan, Many thanks (yet again). With the hint given by your earlier email (viz that currently loadNamespace expects a 3rd component called name in the list that is used for the versionCheck argument) I had another look at what was going on with my toy examples yesterday evening. I'm still working on my issue, but thus far I have: 1) Confirmed that internal calls to loadNamespace triggered by import(somePackage) statements in the NAMESPACE file do create a versionCheck argument t...
2014 Nov 27
0
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
On 26/11/2014, 8:29 PM, Geoff Lee wrote: > Hi Duncan > > The difference is that in your call to loadNamespace, the versionCheck list > has 3 components (name, op and version), whereas the documentation only > mentions 2 (op and version). > loadNamespace 'works' for me provided I add a third component to the list > (even a nonsense one). > > What I haven't yet had the fortitude to do is track d...
2014 Nov 27
0
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
..., then reporting on bugs.r-project.org is the way to get it recorded. Reporting it on this list is really hit and miss. But I think from your previous description, something else is going on. When I try to load a namespace with a bad version number, I get an error: loadNamespace("rgl", versionCheck=list(name="rgl", op=">", version=package_version('3.0'))) Error in loadNamespace("rgl", versionCheck = list(name = "rgl", op = ">", : namespace ?rgl? 0.95.1163 is being loaded, but > 3.0 is required Duncan Murdoch > > Ge...
2014 Nov 26
0
Problem understanding behaviour of versionCheck for loadNamespace (and when versions for Imports packages are checked)
...umed they are checked when you try to install the package. If you ask for version 3.0, and only have 0.3, the install should fail. But as you've found, the documents say something else... > > > > Along the way I've hit a snag understanding what loadNamespace with the > versionCheck argument set does. The core of my query is 'am I doing > something wrong, or have I stumbled across a bug?'. Probably the former, > but after several days I still can't figure it out, so any guidance, hints > or outright help would be much appreciated. > > > >...
2016 Oct 26
2
improve 'package not installed' load errors?
...t;> >> One of the more common issues that new R users see, and become stumped >> by, is error messages during package load of the form: >> >> > library(ggplot2) >> Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), >> versionCheck = vI[[j]]) : >> there is no package called 'Rcpp' >> Error: package or namespace load failed for 'ggplot2' >> >> Typically, error messages of this form are caused simply by one or >> more dependent packages (in this case, 'Rcpp&...
2014 Dec 21
0
loadNamespace and versionChecking and the otherpackage::otherfun syntax
...cking of these dependencies till later, when it is processing the NAMESPACE file (to create the imports:mypackage namespace/environment/frame which encloses the namespace:mypackage namespace/environment/frame). The checking occurs inside 3 loops, which all use an appropriate entry from vI as the versionCheck argument in a recursive call to loadNamespace, viz. for (i in nsInfo$imports) { ...etc... } for (imp in nsInfo$importClasses) ...etc... for (imp in nsInfo$importMethods) ...etc... AN ASIDE ABOUT loadNamespace AND Depends: ===============================...
2016 Oct 24
4
improve 'package not installed' load errors?
Hi R-devel, One of the more common issues that new R users see, and become stumped by, is error messages during package load of the form: > library(ggplot2) Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : there is no package called 'Rcpp' Error: package or namespace load failed for 'ggplot2' Typically, error messages of this form are caused simply by one or more dependent packages (in this case, 'Rcpp') not being installed or available on the current library p...
2019 Oct 10
2
How to refer to my package from another package DESCRIPTION
...or one of the functions, and also in the Imports section in the DESCRIPTION However, when I do ?R CMD check Package1? I get: * checking loading without being on the library search path ... WARNING Error: package or namespace load failed for ?Package1? in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ?Package2? It can?t find it. However, it does not seem like the correct thing is to have R_LIBS_USER=/myHome/libraries How should I go about this? Thanks in advance! [[alternative HTML version deleted]]
2019 Jun 30
2
problema con ggplot2
Hace tiempo que utilizo ggplot2, pero después de haber instalado varios paquetes nuevos, al cargarlo (library(ggplot2)) me da este error: Error: package or namespace load failed for ?ggplot2? in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): namespace ?pkgconfig? 2.0.1 is being loaded, but >= 2.0.2 is required -- Dr Manuel Mendoza Department of Biogeography and Global Change National Museum of Natural Science (MNCN) Spanish Scientific Council (CSIC) C/ Serrano 115bis, 28006 MADRID Spain
2018 Jan 18
2
error while loading ggplot2
Getting the following error while loading ggplot2. > library(ggplot2) Error: package or namespace load failed for ?ggplot2? in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): object 'vI' not found Tried different version of R and ggplot2 but still doesnt work. Any help to resolve is appreciated. Appreciate any pointers. -S [[alternative HTML version deleted]]
2020 Jul 21
2
error al instalar glue
...;2020-01-01") %>% dplyr::group_by(screen_name) %>% ts_plot("days", trim = 1L) + ggplot2::geom_point() + ggplot2::labs( title = "Tuits publicados por cada cuenta" ) Me da el siguiente error Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace ?glue? 1.3.1 is already loaded, but >= 1.3.2 is required Instalé y corrí glue, no sé si tenga que ver con la versión de R que tengo. Alguien tiene idea cuál es el problema? Muchas gracias! [[alternative HTML version deleted]]
2016 Jul 21
3
Error con la R Commander
Hola, hace unos días actualicé los paquetes que tenía instalados en R y se me actualizó R Commander. Ahora, cuando intento, abrir el paquete me da el siguiente error: Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace ?pbkrtest? 0.4-2 is being loaded, but >= 0.4.4 is required La versión que tengo instalada de R es la 3.2.1 para Mac. He visto los requisitos de RCommander y parece que tengo todos los paquetes que necesita instalados. ¿Cómo puedo arreglarlo? Toda ayuda será bienvenid...
2017 Feb 15
2
paquete Rcmdr y BiodiversityR
...e R y Rstudio, no puedo cargar el paquete Rcmdr. Lo miso me pasa con el paquete BiodiversityR. Alguien tiene alguna posible solución? Desde ya muchas gracias. Saludos, Luis > library(Rcmdr) Loading required package: RcmdrMisc Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : there is no package called 'data.table' Error: package 'RcmdrMisc' could not be loaded [[alternative HTML version deleted]]
2017 Nov 01
3
beta binomial distribution installation
...> > > The downloaded binary packages are in > > C:\Users\stator-guest\AppData\Local\Temp\RtmpoVx40V\ > downloaded_packages > > > library(TailRank) > > Error: package or namespace load failed for TailRank in loadNamespace(i, > c(lib.loc, .libPaths()), versionCheck = vI[[i]]): > > there is no package called Biobase > > In addition: Warning message: > > package TailRank was built under R version 3.4.2 > > > > > [[alternative HTML version deleted]] > > ____________________________________________________________ &...
2017 Nov 01
0
beta binomial distribution installation
...TailRank"), I got the following errors. > biocLite() Error in biocLite() : could not find function "biocLite" > library("TailRank") Loading required package: oompaBase Error: package or namespace load failed for ?TailRank? in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ?Biobase? In addition: Warning messages: 1: package ?TailRank? was built under R version 3.4.2 2: package ?oompaBase? was built under R version 3.4.2 (2) I tried to write the command biocLite(), then biocLite("TailRank"), I got the following erro...
2017 Nov 01
2
beta binomial distribution installation
...Rank? successfully unpacked and MD5 sums checked The downloaded binary packages are in C:\Users\stator-guest\AppData\Local\Temp\RtmpoVx40V\downloaded_packages > library(TailRank) Error: package or namespace load failed for ?TailRank? in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): there is no package called ?Biobase? In addition: Warning message: package ?TailRank? was built under R version 3.4.2 [[alternative HTML version deleted]]
2015 Mar 03
2
ndr_push_error(6) blob length is too large
...all, I've set the log level of my DC to 3. I'm using it as a file server too although it is not recommended. I now have the following errors in log.samba: [2015/03/03 08:58:54.244106, 2] ../source4/dns_server/dns_query.c:629(dns_server_process_query_send) Not authoritative for 'versioncheck.addons.mozilla.org', forwarding [2015/03/03 08:58:54.266123, 1] ../librpc/ndr/ndr.c:489(ndr_push_error) ndr_push_error(6): Invalid...Unexpected blob length is too large The first one is self-explanatory but what does the 2nd one mean? There are a few of these errors. Samba version: 4.1.1...