From 378464a424c5109eb49ac17d3a8bce9c4a22c7d0 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Sun, 7 Jul 2024 19:13:03 +0200 Subject: [PATCH] How_to_generate_an_bcrypt_hash.md: macos guide --- How_to_generate_an_bcrypt_hash.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/How_to_generate_an_bcrypt_hash.md b/How_to_generate_an_bcrypt_hash.md index bdd8de7..acca38f 100644 --- a/How_to_generate_an_bcrypt_hash.md +++ b/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