You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build(deps): split up dependencies by document type (#986)
* split dependencies by document type
* make pip-compile with new requirements
* add extra requirements to setup.py
* add in all docs; re pip-compile
* extra for all docs
* add pandas to xlsx
* dependency requires for tsv and csv
* handling for doc, docx and odt
* dependency check for pypandoc
* required dependencies for pandoc files
* xml and html
* markdown
* msg
* add in pdf
* add in pptx
* add in excel
* add lxml as base req
* extra all docs for local inference
* local inference installs all
* pin pillow version
* fixes for plain text tests
* fixes for doc
* update make commands
* changelog and version
* add xlrd
* update pip-compile
* pin numpy for python 3.8 support
* more constraints
* contraint on scipy
* update install docs
* constrain ipython
* add outlook to pip-compile
* more ipython constraints
* add extras to dockerfile
* pin office365 client
* few doc tweaks
* types as strings
* last pip-compile
* re pip-comple
* make tidy
* make tidy
Copy file name to clipboardExpand all lines: docs/source/installing.rst
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,15 @@ Quick Start
7
7
Use the following instructions to get up and running with ``unstructured`` and test your
8
8
installation.
9
9
10
-
* Install the Python SDK with ``pip install "unstructured[local-inference]"``
11
-
* If you do not need to process PDFs or images, you can run ``pip install unstructured``
10
+
* Install the Python SDK with ``pip install unstructured``
11
+
* Plain text files, HTML, XML, JSON and Emails do not require any extra dependencies.
12
+
* If you need to process other document types, you can install the extras required for those documents
13
+
with ``pip install "unstructured[docx,pptx]"``.
14
+
* To install the extras for every document type, use ``pip install "unstructured[all-docs]"``.
15
+
* For ``unstructured<0.9.0``, you can install the extras for all document types with
16
+
``pip install "unstructured[local-inference]"``. The ``local-inference`` extra is still
17
+
supported in newer versions for backward compatibility, but may be deprecated in a future version.
18
+
The ``all-docs`` extra is the officially supported installation pattern.
12
19
13
20
* Install the following system dependencies if they are not already available on your system. Depending on what document types you're parsing, you may not need all of these.
0 commit comments