I have a trouble with the import of "blabel", a python library to elaborate different labels for sticker's printing.
I used the example given in the library's github: https://github.com/Edinburgh-Genome-Foundry/blabel
from blabel import LabelWriter
label_writer = LabelWriter("item_template.html",
default_stylesheets=("style.css",))
records= [
dict(sample_id="s01", sample_name="Sample 1"),
dict(sample_id="s02", sample_name="Sample 2")
]
label_writer.write_labels(records, target='qrcode_and_label.pdf')
But as a result I got the next output:
OSError: cannot load library 'gobject-2.0-0': error 0x7e. Additionally, ctypes.util.find_library() did not manage to locate a library called 'gobject-2.0-0'
How can I fix this issue?