Does this tool work with Excel files? #7
Answered
by
JayanGupta
jayangupta-ai
asked this question in
Q&A
|
"I saw the README, but I'm getting an error when trying to work with Excel files . What's can be done ? |
Answered by
JayanGupta
Aug 16, 2026
Replies: 1 comment
|
Hey! AutoData fully supports both .xlsx and .xls files natively, but this error usually happens if the backend dependencies didn't install completely. To fix this, we just need to make sure the Python libraries that read Excel files (openpyxl and xlrd) are installed. Open your terminal, navigate to the backend folder, and run this command: " pip install -r requirements.txt " This will ensure you have all the necessary Excel parsing libraries installed. Let me know if that fixes the issue for you! |
0 replies
Answer selected by
jayangupta-ai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey! AutoData fully supports both .xlsx and .xls files natively, but this error usually happens if the backend dependencies didn't install completely.
To fix this, we just need to make sure the Python libraries that read Excel files (openpyxl and xlrd) are installed.
Open your terminal, navigate to the backend folder, and run this command:
" pip install -r requirements.txt "
This will ensure you have all the necessary Excel parsing libraries installed. Let me know if that fixes the issue for you!