What Window directory should I clone quarto-clik clonning from the github and how can I integrate with RStusio

I am going to clon quarto-cli from the github. Where shoul I install it and how can I integrate it with RStudio. Additionally, I have to compile because it is a developer version. How should I compile?

Do you really need to build current dev version yourself? E.g., to test out some specific branch or a pull request?

As they are preparing to release version 1.9, the main branch seems to be in sync with 1.9 pre-releases, which are continuously built and available at Releases · quarto-dev/quarto-cli · GitHub (open Assets). At the time of writing, Download Quarto – Quarto also points to those same 1.9 release candidates by default. When using win.msi files for installation, Windows installer updates your PATH environment variable and most recently installed Quarto version should be picked.

You can verify this by running quarto check from Terminal in RStudio (not to be confused with R console) :

PS D:\r\so-450> quarto check
Quarto 1.9.33
...
[>] Checking Quarto installation......OK
      Version: 1.9.33
      Path: C:\Users\margusl\AppData\Local\Programs\Quarto\bin
      CodePage: 1252
...

Or with {quarto} package:

quarto::quarto_path()
#> [1] "C:/Users/margusl/AppData/Local/Programs/Quarto/bin/quarto.exe"
quarto::quarto_version()
#> [1] '1.9.33'

Thank you. Will you let me know when the new version is released?

I have installed the latest version of quarto cli and still the program does not work. I am using quarto with revealjs. One error I get is: " Could you check my code please?

Error in output$ui <- renderUI(ds) : object 'output' not found"


title: "Linear Regression"
format: revealjs
editor: visual
profile: shiny
smaller: true
scrollable: true

suppressWarnings(suppressMessages(library(shinylive)))
suppressWarnings(suppressMessages(library(shiny)))
suppressMessages(suppressWarnings(library(rmarkdown)))
suppressMessages(suppressWarnings(library(dplyr)))
suppressMessages(suppressWarnings(library(bslib)))
datasets <- list(Formaldehyde = Formaldehyde, Indometh = Indometh, 
                 LifeCycleSavings = LifeCycleSavings, OrchardSprays = OrchardSprays,                  Theoph = Theoph, chickwts = chickwts,faithful = faithful,                           randu = randu,ChickWeight = ChickWeight, Loblolly = Loblolly,                       anscombe = anscombe, beaver1 = beaver1, nottem = nottem,
                 stackloss = stackloss, swiss = swiss, DNase = DNase,
                 Nile = Nile, mtcars = mtcars, trees = trees)
 titlePanel(tags$h2("DATA SETS", style =    "color: blue;"))
  radioButtons("inDs", "Select dataset:", choices = names(datasets))
  uiOutput("ui")
ds <- reactive( datasets[[input$inDs]] )
output$ui <- renderUI(ds)

Do you know what the new version of quarto-cli be called.