Si vous obtenez l'erreur suivante avec 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
Vous pouvez l'installer en installant Xcode Command Line Tools avec la commande suivante, puis pip install.
% xcode-select --install
% pip install pyquery
Recommended Posts