From e7bcfeed1403d257da76596484c0bd0a307b405e Mon Sep 17 00:00:00 2001 From: Kent Bull Date: Fri, 4 Oct 2024 12:48:48 -0600 Subject: [PATCH] docs: show libsodium install instructions (#870) --- 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+