From f1b9ac7b4f7f88fd00fb3469a7b5607e2d807e9d Mon Sep 17 00:00:00 2001 From: Thomas Marchand Date: Fri, 30 Apr 2021 09:44:02 +0200 Subject: [PATCH] add documentation for manual installation --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 68e1b3d..d3e6fef 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,12 @@ python3 -m pip install -U binance.py py -3 -m pip install -U binance.py ``` +Alternatively you can build the package and install it manually: +``` +python setup.py sdist bdist_wheel +python -m pip install dist/binance.py-X.X.X-py3-none-any.whl +``` + ## Why binance.py? The binance api is complex to grasp and using a wrapper saves time but also ensures that the right practices are adopted. Binance.py offers a modern and asynchronous solution.