From 42c7368c889c22d70b9a448f2ec421650056206d Mon Sep 17 00:00:00 2001 From: Matt Roeschke Date: Thu, 24 Nov 2016 23:57:32 -0800 Subject: [PATCH] DOC: Update outdated caveats for Anaconda and HTML parsing (#9032) Remove entire outdated section Accidentally deleted references --- doc/source/gotchas.rst | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/doc/source/gotchas.rst b/doc/source/gotchas.rst index cfac5c257184d..8a1e06fa6d86c 100644 --- a/doc/source/gotchas.rst +++ b/doc/source/gotchas.rst @@ -514,40 +514,6 @@ parse HTML tables in the top-level pandas io function ``read_html``. text from the URL over the web, i.e., IO (input-output). For very large tables, this might not be true. -**Issues with using** |Anaconda|_ - - * `Anaconda`_ ships with `lxml`_ version 3.2.0; the following workaround for - `Anaconda`_ was successfully used to deal with the versioning issues - surrounding `lxml`_ and `BeautifulSoup4`_. - - .. note:: - - Unless you have *both*: - - * A strong restriction on the upper bound of the runtime of some code - that incorporates :func:`~pandas.io.html.read_html` - * Complete knowledge that the HTML you will be parsing will be 100% - valid at all times - - then you should install `html5lib`_ and things will work swimmingly - without you having to muck around with `conda`. If you want the best of - both worlds then install both `html5lib`_ and `lxml`_. If you do install - `lxml`_ then you need to perform the following commands to ensure that - lxml will work correctly: - - .. code-block:: sh - - # remove the included version - conda remove lxml - - # install the latest version of lxml - pip install 'git+git://github.com/lxml/lxml.git' - - # install the latest version of beautifulsoup4 - pip install 'bzr+lp:beautifulsoup' - - Note that you need `bzr `__ and `git - `__ installed to perform the last two operations. .. |svm| replace:: **strictly valid markup** .. _svm: http://validator.w3.org/docs/help.html#validation_basics @@ -561,9 +527,6 @@ parse HTML tables in the top-level pandas io function ``read_html``. .. |lxml| replace:: **lxml** .. _lxml: http://lxml.de -.. |Anaconda| replace:: **Anaconda** -.. _Anaconda: https://store.continuum.io/cshop/anaconda - Byte-Ordering Issues --------------------