Perguntas com a marcação «lxml»

11
Como instalar o lxml no Ubuntu
Estou tendo dificuldade em instalar o lxml com o easy_install no Ubuntu 11. Quando digito $ easy_install lxml, recebo: Searching for lxml Reading http://pypi.python.org/simple/lxml/ Reading http://codespeak.net/lxml Best match: lxml 2.3 Downloading http://lxml.de/files/lxml-2.3.tgz Processing lxml-2.3.tgz Running lxml-2.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-7UdQOZ/lxml-2.3/egg-dist-tmp-GacQGy Building lxml version 2.3. Building without Cython. ERROR: /bin/sh: xslt-config: …

28
erro de instalação libxml usando pip
Este é o meu erro: (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install lxml Downloading/unpacking lxml Running setup.py egg_info for package lxml Building lxml version 2.3. Building without Cython. ERROR: /bin/sh: xslt-config: not found ** make sure the development packages of libxml2 and libxslt are installed ** Using build configuration of libxslt Installing collected packages: …
269 python  lxml  pip 

23
Não é possível instalar o Lxml no Mac os x 10.9
Quero instalar o Lxml para poder instalar o Scrapy. Quando atualizei meu Mac hoje, ele não me permitiu reinstalar o lxml, recebo o seguinte erro: In file included from src/lxml/lxml.etree.c:314: /private/tmp/pip_build_root/lxml/src/lxml/includes/etree_defs.h:9:10: fatal error: 'libxml/xmlversion.h' file not found #include "libxml/xmlversion.h" ^ 1 error generated. error: command 'cc' failed with exit status …
234 python  xcode  macos  scrapy  lxml 

12
bs4.FeatureNotFound: Não foi possível encontrar um construtor de árvores com os recursos que você solicitou: lxml. Você precisa instalar uma biblioteca analisadora?
... soup = BeautifulSoup(html, "lxml") File "/Library/Python/2.7/site-packages/bs4/__init__.py", line 152, in __init__ % ",".join(features)) bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library? As saídas acima no meu terminal. Estou no Mac OS 10.7.x. Eu tenho o Python 2.7.1 e …

2
builtins.TypeError: deve ser str, não bytes
Eu converti meus scripts do Python 2.7 para 3.2 e tenho um bug. # -*- coding: utf-8 -*- import time from datetime import date from lxml import etree from collections import OrderedDict # Create the root element page = etree.Element('results') # Make a new document tree doc = etree.ElementTree(page) # …
220 python  python-3.x  lxml 

2
Como selecionar a seguinte tag irmão / xml usando xpath
Eu tenho um arquivo HTML (da Newegg) e seu HTML está organizado como abaixo. Todos os dados em sua tabela de especificações são ' desc ', enquanto os títulos de cada seção estão em ' name. 'Abaixo estão dois exemplos de dados das páginas Newegg. <tr> <td class="name">Brand</td> <td class="desc">Intel</td> …
102 xml  xpath  lxml 

5
src / lxml / etree_defs.h: 9: 31: erro fatal: libxml / xmlversion.h: Não existe esse arquivo ou diretório
Estou executando o seguinte comando para instalar os pacotes nesse arquivo " pip install -r requirements.txt --download-cache=~/tmp/pip-cache". required.txt contém pacakages como # Data formats # ------------ PIL==1.1.7 # html5lib==0.90 httplib2==0.7.4 lxml==2.3.1 # Documentation # ------------- Sphinx==1.1 docutils==0.8.1 # Testing # ------- behave==1.1.0 dingus==0.3.2 django-testscenarios==0.7.2 mechanize==0.2.5 mock==0.7.2 testscenarios==0.2 testtools==0.9.14 wsgi_intercept==0.5.1 enquanto …
99 python-2.7  lxml  pip 

7
Instalando o módulo lxml em python
durante a execução de um script python, recebi este erro from lxml import etree ImportError: No module named lxml agora tentei instalar lxml sudo easy_install lmxl mas me dá o seguinte erro Building lxml version 2.3.beta1. NOTE: Trying to build without Cython, pre-generated 'src/lxml/lxml.etree.c' needs to be available. ERROR: /bin/sh: …
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.