1

I have installed csvkit with Homebrew, but when running in2csv foo.xlsx > foo.csv, I'm always getting this error message:

AttributeError: 'ReadOnlyWorksheet' object has no attribute 'defined_names'

How can I fix it ?

DevonDahon
  • 7,460
  • 6
  • 69
  • 114

1 Answers1

0

I fixed it by reinstalling csvkit with pip.

brew uninstall csvkit
pip install csvkit
DevonDahon
  • 7,460
  • 6
  • 69
  • 114