Update instructions for building with Maturin

This commit is contained in:
Christopher Berner 2020-03-11 09:10:07 -07:00
parent 2923066242
commit 70c7987d39

@ -89,10 +89,12 @@ $ sudo apt install python3-dev
[maturin](https://github.com/PyO3/maturin) is recommended for building the Python bindings in this crate.
```
$ pip install maturin
$ maturin build
$ maturin build --cargo-extra-args="--features python"
```
Alternatively, refer to the [Building and Distribution section](https://pyo3.rs/v0.8.5/building_and_distribution.html) in the [pyo3 user guide](https://pyo3.rs/v0.8.5/).
Note, you must pass the `--cargo-extra-args="--features python"` argument to Maturin when building this crate
to enable the Python binding features.
## License