summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst15
1 files changed, 14 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 1fa3bbd..0e3b128 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
bcrypt
======
-.. image:: https://pypip.in/version/bcrypt/badge.svg?style=flat
+.. image:: https://img.shields.io/pypi/v/nine.svg
:target: https://pypi.python.org/pypi/bcrypt/
:alt: Latest Version
@@ -20,6 +20,19 @@ To install bcrypt, simply:
$ pip install bcrypt
+Note that bcrypt should build very easily on Linux provided you have a C compiler, headers for Python (if you’re not using pypy), and headers for the libffi libraries available on your system.
+
+For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:
+
+.. code:: bash
+
+ $ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
+
+For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:
+
+.. code:: bash
+
+ $ sudo yum install gcc libffi-devel python-devel openssl-devel
Usage
-----