Questions marquées «lxml»

11
Comment installer lxml sur Ubuntu
J'ai du mal à installer lxml avec easy_install sur Ubuntu 11. Quand je tape, $ easy_install lxmlje reçois: 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: not …

28
erreur d'installation de libxml à l'aide de pip
Voici mon erreur: (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: lxml Running …
269 python  lxml  pip 

23
Impossible d'installer Lxml sur Mac os x 10.9
Je veux installer Lxml pour pouvoir ensuite installer Scrapy. Lorsque j'ai mis à jour mon Mac aujourd'hui, il ne me permettait pas de réinstaller lxml, j'obtiens l'erreur suivante: 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 …
234 python  xcode  macos  scrapy  lxml 

12
bs4.FeatureNotFound: Impossible de trouver un générateur d'arborescence avec les fonctionnalités que vous avez demandées: lxml. Avez-vous besoin d'installer une bibliothèque d'analyseur?
... 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? Les sorties ci-dessus sur mon terminal. Je suis sous Mac OS 10.7.x. J'ai Python 2.7.1 et j'ai …

2
builtins.TypeError: doit être str, pas d'octets
J'ai converti mes scripts de Python 2.7 en 3.2 et j'ai un 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
Comment sélectionner la balise frère / xml suivante à l'aide de xpath
J'ai un fichier HTML (de Newegg) et leur HTML est organisé comme ci-dessous. Toutes les données de leur tableau de spécifications sont « desc » tandis que les titres de chaque section sont dans « nom » . Voici deux exemples de données provenant de pages Newegg. <tr> <td class="name">Brand</td> …
102 xml  xpath  lxml 

5
src / lxml / etree_defs.h: 9: 31: erreur fatale: libxml / xmlversion.h: aucun fichier ou répertoire de ce type
J'exécute la commande suivante pour installer les packages dans ce fichier " pip install -r requirements.txt --download-cache=~/tmp/pip-cache". requirements.txt contient des pacakages comme # 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 …
99 python-2.7  lxml  pip 

7
Installer le module lxml en python
lors de l'exécution d'un script python, j'ai eu cette erreur from lxml import etree ImportError: No module named lxml maintenant j'ai essayé d'installer lxml sudo easy_install lmxl mais cela me donne l'erreur suivante Building lxml version 2.3.beta1. NOTE: Trying to build without Cython, pre-generated 'src/lxml/lxml.etree.c' needs to be available. ERROR: …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.