libxml2.2.dylib reference in python program

2020-08-17 17:53发布

A python library that I'm using uses libxml2.2.dylib. I'm getting this error message:

Reason:

Incompatible library version: etree.so requires version 12.0.0 or later, but libxml2.2.dylib provides version 10.0.0

My system's version of libxml2.2.dylib is older and is in /usr/lib/. I downloaded the newest version of libxml2.2.dylib using homebrew, and that is in /usr/local/Cellar/libxml2/2.9.1/lib/.

I would like my Python application to use that version instead of the one the system uses.

Is this a matter of adding the homebrew folder to the path?

1条回答
仙女界的扛把子
2楼-- · 2020-08-17 18:42

Try to follow the instructions here to build lxml with static dependencies. This way you don't have to worry about which version of libxml2 or libxslt it is linked against.

It could boil down to

STATIC_DEPS=true pip install -U lxml
查看更多
登录 后发表回答