From 68cd82eee2c7aaea10de073714391abccec522f5 Mon Sep 17 00:00:00 2001 From: Mor Paz <1912.mor@gmail.com> Date: Wed, 25 Dec 2024 16:01:55 +0200 Subject: [PATCH] Update README.md for users with python 3.12 --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f0baff..c4d6e24 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,11 @@ To use this library, you must have `node-gyp` installed on your system. and the sudo apt-get install -y autoconf make libtool automake ``` +4. If the main `python` version used by your system is `3.12` or higher, you will also need to make sure you have `setuptools` installed (see [here](https://stackoverflow.com/a/77638742/4259027)): + ``` + python3 -m pip install setuptools + ``` + ## Installation ``` @@ -72,4 +77,4 @@ Pull requests are welcome. For major changes, please open an issue first to disc Please make sure to update tests as appropriate. ## License -[MIT](https://choosealicense.com/licenses/mit/) \ No newline at end of file +[MIT](https://choosealicense.com/licenses/mit/)