Visidata
Convert Excel to CSV
Section titled “Convert Excel to CSV”- Open Excel sheet of interest in visidata
- Save the file, when prompted for name, change extension to
.csv
Install Visidata on Windows
Section titled “Install Visidata on Windows”- Use Python interpreter with a supported version of windows-curses
- Create a virtual environment like in conda if needed like 3.12 or uv init
# Init virtual environmentuv init# openpyxl for Excel files supportuv add visidata openpyxlsource .venv/Scripts/activatevisidata book.csv
# pip install option# Create new virtual envpython -m venv ./venv./venv/Scripts/Activate# Install visidata requirementspip install visidata windows-curses# For Excel files supportpip install openpyxl