Trying To Install Django-haystack
Hello I'm trying to install django-haystack on a Debian 7 x86 but it is impossible to install, this Debian is fresh installation, I compiled python 3.6, I am little disappointed, t
Solution 1:
@RaminNietzsche, after few days I figured out the way out to fix this trouble, what did was to install by hand this setuptools_scm
, I do not know why pip did not find any suitable distribution as the error message say.
What I did was this:
pip install setuptools_scm
Solution 2:
In my case I was seeing the following error:
Could notfind suitable distribution for Requirement.parse('setuptools_scm<4,>=3.2')
I tried to run pip install setuptools_scm
but it didn't work as package was already installed.
What worked for me is installing the exact version setuptools_scm
is asking.
pip install setuptools_scm==3.2
Post a Comment for "Trying To Install Django-haystack"