We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a56ac5 commit 285da64Copy full SHA for 285da64
src/lightning/data/streaming/cache.py
@@ -61,7 +61,9 @@ def __init__(
61
raise ModuleNotFoundError("PyTorch version 2.1 or higher is required to use the cache.")
62
63
if not _LIGHTNING_CLOUD_LATEST:
64
- raise ModuleNotFoundError("Lightning Cloud latest is required to use the cache.")
+ raise ModuleNotFoundError(
65
+ "The `lightning-cloud` package in your environement is out-dated."
66
+ " Run: `pip install -U lightning-cloud` to resolve this.")
67
68
input_dir = _resolve_dir(input_dir)
69
self._cache_dir = input_dir.path
0 commit comments