Hello,
I am trying to test the python library, I am using macOS-arm64, using the preinstalled python version on the system which has as version: Python 3.9.6.
I just installed the library pip3 install aspose.words
running a sample program
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.write("Hello world!")
doc.save("./output.docx")
process almost instantly killed:
python3 test.py
[1] 2714 killed python3 test.py
any ideas why this might be?
Thank you!