How_to_generate_an_bcrypt_hash.md: macos guide

This commit is contained in:
Philip H 2024-07-07 19:13:03 +02:00 committed by GitHub
parent 7ecf7b08b1
commit 378464a424
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -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