From 152f66dfd3e32a53b2941096beb3d0aa28d349cb Mon Sep 17 00:00:00 2001 From: MediaPipe Team Date: Thu, 16 Feb 2023 00:21:56 -0800 Subject: [PATCH] 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 --- docs/getting_started/install.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting_started/install.md b/docs/getting_started/install.md index 2d97074d..33075749 100644 --- a/docs/getting_started/install.md +++ b/docs/getting_started/install.md @@ -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 .