From 813aafa4ec6187467ac0fbb390ff224f238f8b13 Mon Sep 17 00:00:00 2001 From: Kent Bull Date: Thu, 3 Oct 2024 15:25:34 -0600 Subject: [PATCH] docs: show libsodium install instructions --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index a6569235..68f60f94 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,15 @@ python 3.12.1+ libsodium 1.0.18+ +##### Libsodium installation + +After installing with Homebrew you need to link the library to the default location that the `ctypes.find_library()` looks in, `/usr/local/lib`, as shown below: + +```shell +sudo ln -s /opt/homebrew/lib /usr/local/lib +``` + + #### python packages lmdb 0.98+ pysodium 0.7.5+