Quote square brackets in shell commands.

This ensures compatibility with zsh.

Fix #2316.
This commit is contained in:
Aymeric Augustin
2019-12-27 08:50:25 +01:00
parent 8c67b529f6
commit 3233b58ad4
4 changed files with 5 additions and 5 deletions

View File

@@ -109,7 +109,7 @@ class ServeCommand(BaseTransformersCLICommand):
if not _serve_dependancies_installed:
raise RuntimeError(
"Using serve command requires FastAPI and unicorn. "
"Please install transformers with [serving]: pip install transformers[serving]."
"Please install transformers with [serving]: pip install \"transformers[serving]\"."
"Or install FastAPI and unicorn separately."
)
else: