Replies: 1 comment 2 replies
-
Are you referring to Quarto the CLI tool or only its R package counterpart (which only a wrapper for R) ? Installing quarto should not be tied to R versions - You can find it here: https://quarto.org/docs/download/ for latest version. RStudio IDE ships with a Quarto version too, but you are using an old one unfortunately.
Installing the R package should work - it may warn because 4.2.2 is the current release for which window binary are built on CRAN, but it should not have impact on the package working. Anyway, installing from source is fine.
Is quarto on your PATH ? What does Setting
RStudio bundled Quarto should be found... 🤔 We may have fixed some issues though in v2022.07 as it was the version for the QUARTO v1 release. It would have been best to have this to work correctly with Quarto. Some features from IDE may not be working correctly with Quarto. You will probably need to use from Terminal or VS Code. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I was hoping to use quarto in a classroom setting but the PC lab is locked to the following out-dated software versions for the remainder of the academic year:
Installing quarto from RStudio's package manager results in a complaint that the package was compiled for a more recent version of R. Re-installing quarto 1.2 from source appears to complete without error, but
quarto::quarto_version()
reportsError in find_quarto(): unable to find quarto command line tools
.I can confirm that quarto exists in both of these locations, but setting the environment variable
QUARTO_PATH
to either one of them does not clear the error:Sys.setenv(QUARTO_PATH="C:/ProgramData/R_Packages/quarto")
Sys.setenv(QUARTO_PATH="C:/Program Files/RStudio/bin/quarto")
Any advice?!
Beta Was this translation helpful? Give feedback.
All reactions