From 330c5438a65f28a2fd8a30b42eb55e2c200a5324 Mon Sep 17 00:00:00 2001 From: Abdul Fatir Date: Mon, 20 Oct 2025 16:11:37 +0200 Subject: [PATCH] Fix pandas install instruction (#326) *Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4568541..61a1615 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ pip install chronos-forecasting A minimal example showing how to perform forecasting using Chronos-2: ```python -import pandas as pd # requires: pip install pandas +import pandas as pd # requires: pip install 'pandas[pyarrow]' from chronos import Chronos2Pipeline pipeline = Chronos2Pipeline.from_pretrained("s3://autogluon/chronos-2", device_map="cuda")