Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 421 Bytes

install_xml_libxml_on_macos.md

File metadata and controls

22 lines (14 loc) · 421 Bytes

Install XML::LibXML on MacOS

This assumes that you have libxml2 installed via Homebrew

$ brew install libxml2

Add the following to your ~/.bash_profile

# PATH
PATH="/usr/local/opt/libxml2/bin:$PATH"

export PATH

This makes sure the correct xml2-config is executed.

References