Forrest logo
back to the quarto tool

quarto:tldr:9c494

quarto: Create a new project.
$ quarto create-project ${path-to-destination_directory} --type ${select}
try on your machine

The command "quarto create-project" creates a new Quarto project. Quarto is a document format and authoring environment that is specialized for data science and analytics. This command allows you to create a new project with some customizable options.

Here is a breakdown of the command:

  • "quarto create-project" is the main command that tells the Quarto command-line interface to create a project.
  • "${path-to-destination_directory}" is a placeholder for the path to the directory where the new project will be created. You need to replace this placeholder with the actual desired destination directory path.
  • "--type ${select}" is an optional flag that specifies the type of project you want to create. "${select}" is a placeholder for the value you will select from the available options. You need to replace this placeholder with the actual desired project type. The available project types may vary based on the installed version of Quarto.

To use this command, you would open your command-line interface (e.g., terminal) and enter the "quarto create-project" command, replacing the placeholders with the appropriate values.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the quarto tool