-
Notifications
You must be signed in to change notification settings - Fork 300
[Question] Installing django-filter with Poetry #972
Unanswered
davidvalaz
asked this question in
Q&A
-
I see in the readme we're told to install django-filter with the following command:
pip install djangorestframework-jsonapi['django-filter']I am using Poetry and this command doesn't work. Can I just use the following instead?
poetry add django-filter
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
This seems to have been fixed in poetry version 1.1.3 with python-poetry/poetry#3129 so poetry supports extra_requires as well.
But of course if it does not work you can also install the django-filter dependency manually as well:
poetry add djangorestframework-jsonapi
poetry add django-filter
Beta Was this translation helpful? Give feedback.
All reactions
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment