From the course: Create Your Own Data Blog with Quarto and Python

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Installing the Quarto CLI

Installing the Quarto CLI

- [Speaker] Let's go through every step you need to install and set up quarto on your machine. Quarto has two prerequisites, Python itself, and Jupyter. It doesn't matter which distribution of Python you have or which package manager you use, quarto does not care. It's also very flexible about Jupyter, but it's possible you haven't installed Jupyter before. So let's install Jupyter first. As explained on the Jupyter website, Jupyter is a Python package and therefore, it's very easy to install via PIP or you environment manager. Let's assume that you are using PIP and move over to the terminal. We'll invoke pip. We'll use the install command and we'll type out notebook, which is the name of the Jupyter package on pip. We'll hit enter and that's going to install the prerequisites and actually the notebook package itself. And there we go. It's successfully installed. To test that Jupyter has been installed successfully,…

Contents