From da67956e6e2c8d1c551268e2c1a6010cbe462a3f Mon Sep 17 00:00:00 2001 From: Pavel Zubkou Date: Sat, 4 Apr 2015 01:44:13 +0300 Subject: [PATCH] Add python3-pip install step for Ubuntu Without `sudo apt-get install python3-pip` as an additional step, `pip3` command would not be available. ``` $ pip3 install newspaper3k The program 'pip3' is currently not installed. You can install it by typing: sudo apt-get install python3-pip ``` --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index a3b7406a..29fb8271 100644 --- a/README.rst +++ b/README.rst @@ -215,6 +215,10 @@ package name is ``newspaper``. **If you are on Debian / Ubuntu**, install using the following: +- Install ``pip3`` command needed to install ``newspaper3k`` package:: + + $ sudo apt-get install python3-pip + - Python development version, needed for Python.h:: $ sudo apt-get install python-dev