Skip to content

Commit 90479b3

Browse files
authored
Fix error message for what package to install (#11398)
1 parent a7bb668 commit 90479b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rerun_py/rerun_sdk/rerun/error_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class RerunIncompatibleDependencyVersionError(ImportError):
288288
def __init__(self, package: str, actual_version: str, compatible_versions: list[int]) -> None:
289289
super().__init__(
290290
f"'{package}' version {actual_version} is incompatible with rerun. "
291-
f"Please install rerun as rerun[{package}]/rerun[all] "
291+
f"Please install rerun as rerun-sdk[{package}]/rerun-sdk[all] "
292292
f"to use this functionality. "
293293
f"Compatible major version(s): {', '.join(map(str, compatible_versions))}"
294294
)

0 commit comments

Comments
 (0)