Those packages are essential to install in order for script to work
python
# packages
pip install pandas
pip install openpyxl
Minimal:
python ./sheet_converter.py --input-filename INPUT_FILENAME
Full:
python sheet_converter.py
--input-filename INPUT_FILENAME
[--input-sheet INPUT_SHEET]
[--number-of-header NUMBER_OF_HEADER]
[--output-file OUTPUT_FILE]
Using executable (from release page). In PowerShell
or Cmd
:
sheet_converter.exe --input-filename INPUT_FILENAME
[--input-sheet INPUT_SHEET]
[--number-of-header NUMBER_OF_HEADER]
[--output-file OUTPUT_FILE]
- Try using
pip3
instead ofpip
- Tested on
python
version3.9
- Maybe use
virtualenv