Buenos días,Homebrew instalar libxml2 con módulos de python
Estoy tratando de instalar libxml2 con módulos de python. He intentado lo siguiente:
brew install --with-python libxml2
==> Downloading ftp://xmlsoft.org/libxml2/libxml2-2.8.0.tar.gz
Already downloaded: /Users/brandon/Library/Caches/Homebrew/libxml2-2.8.0.tar.gz
==> ./configure --prefix=/usr/local/Cellar/libxml2/2.8.0 --without-python
Como se puede ver ... incluso con la bandera --with-python, todavía es la configuración de la fuente sin pitón!
Al final de la instalación, homebrew dice:
Generally there are no consequences of this for you.
If you build your own software and it requires this formula, you'll need
to add its lib & include paths to your build variables:
LDFLAGS -L/usr/local/Cellar/libxml2/2.8.0/lib
CPPFLAGS -I/usr/local/Cellar/libxml2/2.8.0/include
Cuando trato de instalar el gnome-doc-utils:
Gnome-doc-utils requires libxml2 to be compiled
with the python modules enabled, to do so:
$ brew install libxml2 --with-python
Así que, obviamente, lo intenté de nuevo ...
╰─ brew install libxml2 --with-python
Error: libxml2-2.8.0 already installed
Todavía soy nuevo en esto ... así que cualquier ayuda sería muy apreciada.
Tiene alguna razón para no usar [pip] (http://pypi.python.org/pypi/pip/) (o [instalación_fácil] (http://packages.python.org/distribute/easy_install. html) como último recurso)? Suelen comportarse mucho mejor que otras herramientas de empaquetado, y trabajan con [virtualenv] (http://pypi.python.org/pypi/virtualenv/). – brandizzi