«lxml» 태그된 질문

11
우분투에 lxml을 설치하는 방법
Ubuntu 11에서 easy_install을 사용하여 lxml을 설치하는 데 어려움이 있습니다. 입력 $ easy_install lxml하면 다음과 같은 결과가 나타납니다. 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 …

28
pip를 사용한 libxml 설치 오류
이것은 내 오류입니다. (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
Mac OS X 10.9에서 Lxml을 설치할 수 없습니다
Scrapy를 설치할 수 있도록 Lxml을 설치하고 싶습니다. 오늘 Mac을 업데이트하면 lxml을 다시 설치할 수 없어 다음과 같은 오류가 발생합니다. 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 1 brew를 사용하여 libxml2 및 libxslt를 …
234 python  xcode  macos  scrapy  lxml 

12
bs4.FeatureNotFound : 요청한 기능을 가진 트리 빌더를 찾을 수 없습니다 : lxml. 파서 라이브러리를 설치해야합니까?
... 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? 위의 결과는 내 터미널에서 출력됩니다. Mac OS 10.7.x에 있습니다. Python 2.7.1이 있고이 자습서 를 따라 Beautiful Soup …

2
builtins.TypeError : 바이트가 아닌 str이어야합니다
스크립트를 Python 2.7에서 3.2로 변환했으며 버그가 있습니다. # -*- 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) # Add the subelements pageElement = etree.SubElement(page, …
220 python  python-3.x  lxml 

2
xpath를 사용하여 다음 형제 / xml 태그를 선택하는 방법
Newegg의 HTML 파일이 있으며 HTML은 아래와 같이 구성됩니다. 사양표의 모든 데이터는 ' desc '이고 각 섹션의 제목은 ' name입니다. '아래는 Newegg 페이지의 데이터 두 가지 예입니다. <tr> <td class="name">Brand</td> <td class="desc">Intel</td> </tr> <tr> <td class="name">Series</td> <td class="desc">Core i5</td> </tr> <tr> <td class="name">Cores</td> <td class="desc">4</td> </tr> <tr> <td class="name">Socket</td> <td class="desc">LGA …
102 xml  xpath  lxml 

5
src / lxml / etree_defs.h : 9 : 31 : 치명적인 오류 : libxml / xmlversion.h : 해당 파일 또는 디렉터리가 없습니다.
" pip install -r requirements.txt --download-cache=~/tmp/pip-cache" 파일에 패키지를 설치하기 위해 다음 명령을 실행하고 있습니다. requirements.txt에는 다음과 같은 패키지가 포함됩니다. # 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 "lxml"패키지를 설치하는 동안 …
99 python-2.7  lxml  pip 

7
파이썬에 lxml 모듈 설치
파이썬 스크립트를 실행하는 동안이 오류가 발생했습니다. from lxml import etree ImportError: No module named lxml 이제 lxml을 설치하려고했습니다. sudo easy_install lmxl 하지만 다음과 같은 오류가 발생합니다. 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: xslt-config: not found ** make sure …

5
lxml에서 요소를 제거하는 방법
파이썬의 lxml을 사용하여 속성의 내용을 기반으로 요소를 완전히 제거해야합니다. 예: 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, pretty_print=True) 다음을 인쇄하고 싶습니다. <groceries> <fruit state="fresh">pear</fruit> <fruit state="fresh">starfruit</fruit> …
84 python  xml  lxml 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.