From 91fdaf9611fda3d21fb74f8e3b66b1b00fdbfd9c Mon Sep 17 00:00:00 2001 From: Nick Foster <me@nickfost.com> Date: Mon, 10 Dec 2018 19:39:40 -0600 Subject: [PATCH] Update installation.rst --- docs/installation.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 6116b103..7db83616 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -8,7 +8,7 @@ For Debian and Ubuntu, please ensure that the following packages are installed: .. code:: bash - sudo apt-get install build-essential libssl-dev python-dev + sudo apt-get install build-essential libssl-dev python-dev curl For Fedora and RHEL-derivatives, please ensure that the following packages are installed: @@ -28,13 +28,23 @@ For Termux on Android, please install the following packages: pkg install clang openssl-dev python-dev -Signing and Verify can be fasten (200 %) by installing cryptography: +Install pip (https://pip.pypa.io/en/stable/installing/): + +.. code:: bash + + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + + python get-pip.py + +Signing and Verify can be fasten (200 %) by installing cryptography. Install cryptography with pip: .. code:: bash pip install -U cryptography -Install beem by pip:: +Install beem with pip: + +.. code:: bash pip install -U beem -- GitLab