From 381977fd00499486270de383e105607a20d291ea Mon Sep 17 00:00:00 2001 From: Jim Burtoft <39492751+jimburtoft@users.noreply.github.com> Date: Fri, 2 Feb 2024 20:39:03 -0500 Subject: [PATCH] fixing code in docs example the code you have tries to send the second line as a parameter to the first. You can add the && or you can delete the backslash on the previous line. --- docs/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 85c4a987..33322c43 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -8,7 +8,7 @@ You will need to install [Docker](https://docs.docker.com/get-docker/), [Nvidia On Linux, you can install Docker and Docker Compose via the following commands: ```bash sudo apt-get update \ - sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin \ + && sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin \ && sudo systemctl restart docker ```