If you get the following error with pip install pyquery
#include "libxml/xmlversion.h"
^
1 error generated.
/usr/local/opt/pyenv/versions/3.4.3/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'bugtrack_url'
warnings.warn(msg)
error: command 'clang' failed with exit status 1
You can install it by installing Xcode Command Line Tools with the following command and then pip install.
% xcode-select --install
% pip install pyquery
Recommended Posts