I have a LibreOffice Calc workbook with three worksheets. I'm trying to import data from the third worksheet. I've tried both the readODS and rio packages, but they keep returning the same error message:
Error: .onLoad failed in loadNamespace() for cli; details: call: fun(libname, pkgname) error: object 'clic_start_thread' not found
The readODS package's get_num_sheets_in_ods and list_ods_sheets functions work as expected. But its read_ods command throws the error above.
In particular, read_ods(path = "data/myFile.ods", sheet="Foobar", skip=2, range= "A3:E184")
throws the error message above.
OTOH, the rio package's convert
and import
commands, without anything fancy, also throw the error message reproduced above.
I suspect the CLI package is being used to parse commands in both packages, but I'm at a loss for how these two packages seem to be choking on the neighborhoods. How should I debug these error messages?