There is a python 3.4 on vin.HR, libreof 5.1.2.

When launching this fragment, I get only output 1111, and output 2222 does not occur. The console hangs on import unotools. Why does this happen and how to overcome?

import sys sys.path.append(r"C:\Program Files\LibreOffice 5\program") print(1111) import unotools print(2222) 

    0