Fix 'build the wheel' section of readme

This commit is contained in:
thunderbiscuit 2022-02-16 21:29:43 -05:00
parent c364b20dd9
commit be87629aba
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -1,13 +1,7 @@
# bdk-python
The Python language bindings for the [bitcoindevkit](https://github.com/bitcoindevkit).
See the [package on PyPI](https://pypi.org/project/bdkpython/).
Currently supported architectures:
- macOS `arm64`
- macOS `x86_64`
- linux `x86_64`
See the [package on PyPI](https://pypi.org/project/bdkpython/).
<br/>
## Install from PyPI
@ -27,10 +21,12 @@ python -m tox
```shell
# Install dependecies
pip install -r requirements.txt
# Generate the bindings first
bash generate.sh
# Build the wheel
python -m build
python3 setup.py -v bdist_wheel
```
<br/>
@ -38,4 +34,3 @@ python -m build
```shell
pip install ./dist/bdkpython-0.0.1-py3-none-any.whl
```
<br/>