summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/passwords.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/auth/passwords.txt b/docs/topics/auth/passwords.txt
index 7ddbc63b9a..df070706f4 100644
--- a/docs/topics/auth/passwords.txt
+++ b/docs/topics/auth/passwords.txt
@@ -76,9 +76,9 @@ use it Django supports bcrypt with minimal effort.
To use Bcrypt as your default storage algorithm, do the following:
-1. Install the `bcrypt library`_ (probably by running ``sudo pip install
- bcrypt``, or downloading the library and installing it with ``python
- setup.py install``).
+1. Install the `bcrypt library`_. This can be done by running ``pip install
+ django[bcrypt]``, or by downloading the library and installing it with
+ ``python setup.py install``.
2. Modify :setting:`PASSWORD_HASHERS` to list ``BCryptSHA256PasswordHasher``
first. That is, in your settings file, you'd put::