-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Nick edited this page Dec 18, 2025
·
1 revision
- Python 3.8 or newer
- Tesseract OCR (for offline mode)
pip install chart2csvOr install from source:
git clone https://github.com/kiku-jw/Chart2CSV.git
cd Chart2CSV
pip install -e .Tesseract is needed for offline text recognition.
macOS:
brew install tesseractUbuntu/Debian:
sudo apt-get install tesseract-ocrWindows: Download from: https://github.com/UB-Mannheim/tesseract/wiki
For better accuracy, you can use Mistral AI instead of Tesseract.
- Get a free API key at https://console.mistral.ai/
- Set it as environment variable:
export MISTRAL_API_KEY=your_key_here- Use
--use-mistralflag when running Chart2CSV
python -m chart2csv.cli.main --helpYou should see the help message with all available options.