From 7de026cccf35a178cc991d75e25a137bee251d3e Mon Sep 17 00:00:00 2001 From: Abdul Fatir Date: Mon, 20 Oct 2025 13:57:57 +0000 Subject: [PATCH] Fix pandas install --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4568541d..61a1615a 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")