From 9d28879505f58eaab8c4471eb2d72ac03d889f09 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Sat, 14 Apr 2018 17:30:33 -0700 Subject: [PATCH] Update Ubuntu 14.04 instructions Closes #252 --- docs/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 58da52e3..d858d926 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -287,7 +287,7 @@ If you prefer to not modify your system in this matter, consider using a Docker sudo apt-get update sudo apt-get install \ - python3.6 \ + python3.6-dev \ ghostscript \ tesseract-ocr \ tesseract-ocr-eng \ @@ -298,7 +298,7 @@ Now we need to install ``pip`` and let it install ocrmypdf: .. code-block:: bash - wget -O - -o /dev/null https://bootstrap.pypa.io/get-pip.py | python3.6 + curl https://bootstrap.pypa.io/ez_setup.py -o - | python3.6 && python3.6 -m easy_install pip pip3.6 install ocrmypdf[fitz] The ``wget`` command will download a program and run it.