@@ -514,57 +514,6 @@ parse HTML tables in the top-level pandas io function ``read_html``.
514514 text from the URL over the web, i.e., IO (input-output). For very large
515515 tables, this might not be true.
516516
517- **Issues with using ** |Anaconda |_
518-
519- * `Anaconda `_ ships with `lxml `_ version 3.2.0; the following workaround for
520- `Anaconda `_ was successfully used to deal with the versioning issues
521- surrounding `lxml `_ and `BeautifulSoup4 `_.
522-
523- .. note ::
524-
525- Unless you have *both *:
526-
527- * A strong restriction on the upper bound of the runtime of some code
528- that incorporates :func: `~pandas.io.html.read_html `
529- * Complete knowledge that the HTML you will be parsing will be 100%
530- valid at all times
531-
532- then you should install `html5lib `_ and things will work swimmingly
533- without you having to muck around with `conda `. If you want the best of
534- both worlds then install both `html5lib `_ and `lxml `_. If you do install
535- `lxml `_ then you need to perform the following commands to ensure that
536- lxml will work correctly:
537-
538- .. code-block :: sh
539-
540- # remove the included version
541- conda remove lxml
542-
543- # install the latest version of lxml
544- pip install ' git+git://github.com/lxml/lxml.git'
545-
546- # install the latest version of beautifulsoup4
547- pip install ' bzr+lp:beautifulsoup'
548-
549- Note that you need `bzr <http://bazaar.canonical.com/en >`__ and `git
550- <http://git-scm.com> `__ installed to perform the last two operations.
551-
552- .. |svm | replace :: **strictly valid markup **
553- .. _svm : http://validator.w3.org/docs/help.html#validation_basics
554-
555- .. |html5lib | replace :: **html5lib **
556- .. _html5lib : https://github.com/html5lib/html5lib-python
557-
558- .. |BeautifulSoup4 | replace :: **BeautifulSoup4 **
559- .. _BeautifulSoup4 : http://www.crummy.com/software/BeautifulSoup
560-
561- .. |lxml | replace :: **lxml **
562- .. _lxml : http://lxml.de
563-
564- .. |Anaconda | replace :: **Anaconda **
565- .. _Anaconda : https://store.continuum.io/cshop/anaconda
566-
567-
568517Byte-Ordering Issues
569518--------------------
570519Occasionally you may have to deal with data that were created on a machine with
0 commit comments