til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

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