-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'verbose' is not an exported object from 'namespace:R.utils' #105
Comments
I have this same problem, but can see that it only happens when loading all three of here's the session that doesn't work
Problem persisted even when I upgraded R and all packages. The work around is to not load R.utils, but just us |
Rerpex: library(conflicted)
library(R.utils)
#> Loading required package: R.oo
#> Loading required package: R.methodsS3
#> R.methodsS3 v1.8.2 (2022-06-13 22:00:14 UTC) successfully loaded. See ?R.methodsS3 for help.
#> R.oo v1.26.0 (2024-01-24 05:12:50 UTC) successfully loaded. See ?R.oo for help.
#>
#> Attaching package: 'R.oo'
#> The following object is masked from 'package:R.methodsS3':
#>
#> throw
#> The following objects are masked from 'package:methods':
#>
#> getClasses, getMethods
#> The following objects are masked from 'package:base':
#>
#> attach, detach, load, save
#> R.utils v2.12.3 (2023-11-18 01:00:02 UTC) successfully loaded. See ?R.utils for help.
library(httr)
#> Error: 'verbose' is not an exported object from 'namespace:R.utils' Created on 2024-10-21 with reprex v2.1.0 And traceback:
|
Looks like this is an R.utils buglet: library(R.utils)
#> Loading required package: R.oo
#> Loading required package: R.methodsS3
#> R.methodsS3 v1.8.2 (2022-06-13 22:00:14 UTC) successfully loaded. See ?R.methodsS3 for help.
#> R.oo v1.26.0 (2024-01-24 05:12:50 UTC) successfully loaded. See ?R.oo for help.
#>
#> Attaching package: 'R.oo'
#> The following object is masked from 'package:R.methodsS3':
#>
#> throw
#> The following objects are masked from 'package:methods':
#>
#> getClasses, getMethods
#> The following objects are masked from 'package:base':
#>
#> attach, detach, load, save
#> R.utils v2.12.3 (2023-11-18 01:00:02 UTC) successfully loaded. See ?R.utils for help.
#>
#> Attaching package: 'R.utils'
#> The following object is masked from 'package:utils':
#>
#> timestamp
#> The following objects are masked from 'package:base':
#>
#> cat, commandArgs, getOption, isOpen, nullfile, parse, use, warnings
"verbose" %in% ls("package:R.utils")
#> [1] TRUE
R.utils::verbose
#> Error: 'verbose' is not an exported object from 'namespace:R.utils' Created on 2024-10-22 with reprex v2.1.0 I've never seen this problem before. |
There is currently a bug in R.utils or conflicted r-lib/conflicted#105 HenrikBengtsson/R.utils#157
I have been using
conflicted
for a while now without any issues. Recently I have been facing this issue where I get the following error messageError: 'verbose' is not an exported object from 'namespace:R.utils'
This happens when I load the package mostly and sometimes when I use
conflicts_prefer
The text was updated successfully, but these errors were encountered: