Domande taggate «lxml»

11
Come installare lxml su Ubuntu
Ho difficoltà a installare lxml con easy_install su Ubuntu 11. Quando scrivo $ easy_install lxmlottengo: 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 found ** make …

28
errore di installazione di libxml tramite pip
Questo è il mio errore: (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
Impossibile installare Lxml su Mac os x 10.9
Voglio installare Lxml in modo da poter installare Scrapy. Quando ho aggiornato il mio Mac oggi non mi permetteva di reinstallare lxml, ricevo il seguente errore: 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 …
234 python  xcode  macos  scrapy  lxml 

12
bs4.FeatureNotFound: Impossibile trovare un generatore di alberi con le funzionalità richieste: lxml. Devi installare una libreria di parser?
... 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? Le uscite sopra sul mio terminale. Sono su Mac OS 10.7.x. Ho Python 2.7.1 e ho seguito …

2
builtins.TypeError: deve essere str, non byte
Ho convertito i miei script da Python 2.7 a 3.2 e ho 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 


5
src / lxml / etree_defs.h: 9: 31: errore fatale: libxml / xmlversion.h: nessun file o directory di questo tipo
Sto eseguendo il seguente comando per installare i pacchetti in quel file " pip install -r requirements.txt --download-cache=~/tmp/pip-cache". requisito.txt contiene pacchetti come # 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
Installazione del modulo lxml in python
durante l'esecuzione di uno script Python, ho ricevuto questo errore from lxml import etree ImportError: No module named lxml ora ho provato a installare lxml sudo easy_install lmxl ma mi dà il seguente errore Building lxml version 2.3.beta1. NOTE: Trying to build without Cython, pre-generated 'src/lxml/lxml.etree.c' needs to be available. …

5
come rimuovere un elemento in lxml
Ho bisogno di rimuovere completamente gli elementi, in base al contenuto di un attributo, usando lxml di Python. Esempio: import lxml.etree as et xml=""" <groceries> <fruit state="rotten">apple</fruit> <fruit state="fresh">pear</fruit> <fruit state="fresh">starfruit</fruit> <fruit state="rotten">mango</fruit> <fruit state="fresh">peach</fruit> </groceries> """ tree=et.fromstring(xml) for bad in tree.xpath("//fruit[@state=\'rotten\']"): #remove this element from the tree print et.tostring(tree, …
85 python  xml  lxml 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.