Entering edit mode
avaniknejad686
•
0
@6c5e035e
Last seen 3.7 years ago
I am trying to download polyester on R and I keep getting this message:
The downloaded binary packages are in /var/folders/nv/3ql1r6t173q4q4n56xsr81nh0000gn/T//RtmpsyXU1S/downloaded_packages Old packages: 'mgcv' Update all/some/none? [a/s/n]:
I put in this command before the message:
if (!requireNamespace("BiocManager", quietly = TRUE))
- install.packages("BiocManager")
BiocManager::install("polyester")
This doesn't seem like an ERROR. If there is an ERROR please show complete output: the command you tried along with all output produced. The message is indicating there is an older package and asking if you would like to update (we generally recommend choosing
a
to update all out-of-date packages to new versions. After this call are you able to load the package withlibrary(polyester)
?