From 5f56a982282f323a0c48797a7d92e4a107af19e6 Mon Sep 17 00:00:00 2001 From: Ian Whalen Date: Thu, 19 Mar 2026 20:44:18 -0400 Subject: [PATCH] Fix mlmodel pip install command to quote extras syntax shells like zsh interpret brackets as glob patterns, so the command needs quotes: pip install 'viam-sdk[mlmodel]' Co-Authored-By: Claude Sonnet 4.6 --- src/viam/services/mlmodel/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viam/services/mlmodel/__init__.py b/src/viam/services/mlmodel/__init__.py index da6ba840e0..db9ba75608 100644 --- a/src/viam/services/mlmodel/__init__.py +++ b/src/viam/services/mlmodel/__init__.py @@ -7,7 +7,7 @@ ( """MLModel support in the Viam Python SDK requires the installation of an additional dependency: numpy. Update your package using the extra [mlmodel] -for example `pip install viam-sdk[mlmodel]` or the equivalent update in your dependency manager.""" +for example `pip install 'viam-sdk[mlmodel]'` or the equivalent update in your dependency manager.""" ), ) raise