The command in the readme didnt work for me. ```bash pip install -r pyproject.toml --all-extras ``` This seems to mix up requirements.txt and pyproject.toml. Possible fix that worked for me: ```bash pip install .[test,dev] ```