-
|
according to : while installing rest_api , |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hi @jj449 there's a subtle difference between I'll amend the documentation to make this more evident, in the meantime try cloning the Haystack repo and run from the repo folder: Update This way you don't need to clone the Haystack repo, |
Beta Was this translation helpful? Give feedback.
-
|
close now |
Beta Was this translation helpful? Give feedback.
Hi @jj449
there's a subtle difference between
pip install rest_apiandpip install rest_api/that you see in the docs: the former will try to download the package from PyPI (and it fails as we don't publishrest_api) while the latter (notice the trailing/) will install from the local folder.I'll amend the documentation to make this more evident, in the meantime try cloning the Haystack repo and run from the repo folder:
Update
I amended the docs here, I think the easiest approach is to install the
rest_apiwith the following command:This way you don't need to clone th…