diff --git a/bindings/python/README.md b/bindings/python/README.md index 1b086e13..59509b69 100644 --- a/bindings/python/README.md +++ b/bindings/python/README.md @@ -42,3 +42,18 @@ save_file(tensors, "./out.bin") # Now loading loaded = load_file("./out.bin") ``` + +### Installation + +``` +pip install setuptools_rust +pip install -e . +``` +Should be enough to install this library locally. + +### Testing + +``` +pip install pytest # We don't require pytest, but it's a common library used across HF. +pytest -sv tests/ +```