Browse Source
How_to_generate_an_bcrypt_hash.md: macos guide
pull/1154/head
Philip H
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
7 additions and
0 deletions
-
How_to_generate_an_bcrypt_hash.md
|
|
@ -51,6 +51,13 @@ pip3 install bcrypt |
|
|
|
pip3 install bcrypt --break-system-packages |
|
|
|
``` |
|
|
|
|
|
|
|
### macOS |
|
|
|
```bash |
|
|
|
pip3 install bcrypt |
|
|
|
# If you got externally-managed-environment error |
|
|
|
pip3 install bcrypt --break-system-packages |
|
|
|
``` |
|
|
|
|
|
|
|
## Generating bcrypt hash from the command line |
|
|
|
You can use the following one-liner command to generate a bcrypt hash directly in the cmd/ terminal: |
|
|
|
```bash |
|
|
|