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
Copy file name to clipboardExpand all lines: docs/source/installing.rst
+37-4Lines changed: 37 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,43 @@
1
1
Installation
2
2
============
3
3
4
-
You can install the library by cloning the repo and running ``make install`` from the
5
-
root directory. Developers can run ``make install-local`` to install the dev and test
6
-
requirements alongside the base requirements. If you want a minimal installation without any
7
-
parser specific dependencies, run ``make install-base``.
4
+
Quick Start
5
+
-----------
6
+
7
+
Use the following instructions to get up and running with ``unstructured`` and test your
8
+
installation.
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``
12
+
13
+
* 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.
14
+
* ``libmagic-dev`` (filetype detection)
15
+
* ``poppler-utils`` (images and PDFs)
16
+
* ``tesseract-ocr`` (images and PDFs)
17
+
* ``libreoffice`` (MS Office docs)
18
+
19
+
* Run the following to install NLTK dependencies. ``unstructured`` will handle this automatically soon.
0 commit comments