You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was recently deploying some scripts to a production Red Hat server that use docsplit on word docs. The dev server had been using LibreOffice 5.0.3, where everything worked, but the production server installed the latest 5.0.4, and in this case docsplit failed when trying to extract_pdf on a .doc file with the error: unable to find Office Software.
Apparently with this latest version of LibreOffice installed, the executable name was /usr/bin/libreoffice5.0
As a workaround I was able to get docsplit working simply by linking the libreoffice executable to the name libreoffice: sudo ln -s /usr/bin/libreoffice5.0 /usr/bin/libreoffice
Just wanted to give a heads up about that.
The text was updated successfully, but these errors were encountered:
I was recently deploying some scripts to a production Red Hat server that use docsplit on word docs. The dev server had been using LibreOffice 5.0.3, where everything worked, but the production server installed the latest 5.0.4, and in this case docsplit failed when trying to extract_pdf on a .doc file with the error: unable to find Office Software.
Apparently with this latest version of LibreOffice installed, the executable name was
/usr/bin/libreoffice5.0
As a workaround I was able to get docsplit working simply by linking the libreoffice executable to the name libreoffice:
sudo ln -s /usr/bin/libreoffice5.0 /usr/bin/libreoffice
Just wanted to give a heads up about that.
The text was updated successfully, but these errors were encountered: