From c29ba8ba32b5e374374010ac016f58dea58b9e78 Mon Sep 17 00:00:00 2001 From: Gabriele Santomaggio Date: Fri, 16 May 2025 09:29:57 +0200 Subject: [PATCH] TLS mac documentation [skip ci] Signed-off-by: Gabriele Santomaggio --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2fa7b0c..5e3c7e1 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,19 @@ Inside the [examples](./examples) folder you can find a set of examples that sho - `poetry install`: resolves and install dependencies - `make test`: run the tests -Note for MAC users: -- TLS does not work, see: https://github.com/rabbitmq/rabbitmq-amqp-python-client/issues/64 +### Note for MAC users: + +To run TLS you need to: +``` bash +- pip uninstall python-qpid-proton +- brew install swig +- brew install pkg-config +- export CFLAGS="-I/usr/local/opt/openssl/include"; pip install python-qpid-proton --verbose --no-cache-dir +``` + +Read more about the issue [here](https://stackoverflow.com/questions/44979947/python-qpid-proton-for-mac-using-amqps +) +