You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For completeness' sake: install.packages just flat-out refuses to look for a binary
> install.packages('tidyverse', type='binary')
Error in install.packages("tidyverse", type = "binary") :
type 'binary' is not supported on this platform
which I think is new to 4.4 or 4.3 because I know I've downloaded binaries before for 4.2, and pak ignores the request and downloads source packages anyway. For install.packages I know there's also type='mac.binary' but that seems to look for old OS X binaries, before the OS was known as macOS.
I thought a good quick fix might be to just do renv::install("https://cloud.r-project.org/bin/macosx/big-sur-x86_64/contrib/4.4/tidyverse_2.0.0.tgz") and that works perfectly on my computer, but then it puts exactly that URL in the renv lockfile so that it is no longer portable to other platforms.
Anyway, hope this isn't all user error, my apologies if it is.
The text was updated successfully, but these errors were encountered:
This is on a development version of renv downloaded from Github today (July 11) and R 4.4.1, on an Intel Mac with macOS with Sonoma 14.4.1:
or on 1.0.7
These binaries are available though, e.g. for tidyverse at https://cloud.r-project.org/bin/macosx/big-sur-x86_64/contrib/4.4/tidyverse_2.0.0.tgz.
For completeness' sake:
install.packages
just flat-out refuses to look for a binarywhich I think is new to 4.4 or 4.3 because I know I've downloaded binaries before for 4.2, and
pak
ignores the request and downloads source packages anyway. Forinstall.packages
I know there's alsotype='mac.binary'
but that seems to look for old OS X binaries, before the OS was known as macOS.I thought a good quick fix might be to just do
renv::install("https://cloud.r-project.org/bin/macosx/big-sur-x86_64/contrib/4.4/tidyverse_2.0.0.tgz")
and that works perfectly on my computer, but then it puts exactly that URL in the renv lockfile so that it is no longer portable to other platforms.Anyway, hope this isn't all user error, my apologies if it is.
The text was updated successfully, but these errors were encountered: