From 48262fe17d0a606d13d9f7cd54a2fcf52344ebff Mon Sep 17 00:00:00 2001 From: Kamal Kamalaldin Date: Thu, 26 Sep 2024 23:43:33 -0400 Subject: [PATCH] quote package name to fix installation on zsh (#672) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1779d5e..7ae9c3a 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ CPU support: ```bash pip install rembg # for library -pip install rembg[cli] # for library + cli +pip install "rembg[cli]" # for library + cli ``` GPU support: @@ -94,8 +94,8 @@ Go to and check the installation matrix. If yes, just run: ```bash -pip install rembg[gpu] # for library -pip install rembg[gpu,cli] # for library + cli +pip install "rembg[GPU]" # for library +pip install "rembg[gpu,cli]" # for library + cli ``` ## Usage as a cli