This will fix the command to clone mediapipe in the Debian and Ubuntu, CentOS, Windows, Windows Subsystem for Linux (WSL), Docker. Doc command mentioned

is throwing error when directly copied and pasted in the terminal.

PiperOrigin-RevId: 510061887
This commit is contained in:
MediaPipe Team 2023-02-16 00:21:56 -08:00 committed by Copybara-Service
parent ba10ae8410
commit 152f66dfd3

View File

@ -35,7 +35,7 @@ install --user six`.
```bash
$ cd $HOME
$ git clone -depth 1 https://github.com/google/mediapipe.git
$ git clone --depth 1 https://github.com/google/mediapipe.git
# Change directory into MediaPipe root directory
$ cd mediapipe
@ -287,7 +287,7 @@ build issues.
2. Checkout MediaPipe repository.
```bash
$ git clone -depth 1 https://github.com/google/mediapipe.git
$ git clone --depth 1 https://github.com/google/mediapipe.git
# Change directory into MediaPipe root directory
$ cd mediapipe
@ -590,7 +590,7 @@ next section.
7. Checkout MediaPipe repository.
```
C:\Users\Username\mediapipe_repo> git clone -depth 1 https://github.com/google/mediapipe.git
C:\Users\Username\mediapipe_repo> git clone --depth 1 https://github.com/google/mediapipe.git
# Change directory into MediaPipe root directory
C:\Users\Username\mediapipe_repo> cd mediapipe
@ -680,7 +680,7 @@ cameras. Alternatively, you use a video file as input.
6. Checkout MediaPipe repository.
```bash
username@DESKTOP-TMVLBJ1:~$ git clone -depth 1 https://github.com/google/mediapipe.git
username@DESKTOP-TMVLBJ1:~$ git clone --depth 1 https://github.com/google/mediapipe.git
username@DESKTOP-TMVLBJ1:~$ cd mediapipe
```
@ -771,7 +771,7 @@ This will use a Docker image that will isolate mediapipe's installation from the
2. Build a docker image with tag "mediapipe".
```bash
$ git clone -depth 1 https://github.com/google/mediapipe.git
$ git clone --depth 1 https://github.com/google/mediapipe.git
$ cd mediapipe
$ docker build --tag=mediapipe .