Changes between Initial Version and Version 1 of Ticket #11125, comment 16


Ignore:
Timestamp:
Mar 4, 2015, 9:17:22 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11125, comment 16

    initial v1  
    1 The problem might be that pyuno.so that comes with libreoffice was built for python 3 and your machine has python 2 installed.
     1The problem might be that `pyuno.so` that comes with libreoffice was built for python 3 and your machine has python 2 installed.
    22
    3 libreoffice comes with a version of python that works with its pyuno.so so you want to use that to run ooextract.py
     3libreoffice comes with a version of python that works with its `pyuno.so` so you want to use that to run `ooextract.py`
    44
    5 Check that you have pyuno.so and python in /opt/libreoffice4.0/program and if so copy there ooextract.py and modify docrenderer.py cmd array to start with
     5Check that you have `pyuno.so` and python in `/opt/libreoffice4.0/program` and if so copy there `ooextract.py` and modify `docrenderer.py` cmd array to start with
    66
     7{{{
    78cmd = ['/opt/libreoffice4.0/program/python','/opt/libreoffice4.0/program/ooextract.py',
     9}}}
    810
    9 you might need to detab ooextract.py as python 3 does not run files with mixed indentation
    10 
    11 
     11you might need to detab `ooextract.py` as python 3 does not run files with mixed indentation