-
Notifications
You must be signed in to change notification settings - Fork 301
pip install djangorestframework-jsonapi fails #191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I should add that |
The latest release is 2.0.0-beta.1, which pip will not automatically install because it is an unstable version. The older versions, 1.3.2 and below, are not available on PyPI because it was previously called You can still install the beta versions by explicitly specifying them. pip install djangorestframework-jsonapi==2.0.0-beta.1 |
alternatively, you can use the --pre flag
|
At some point, The command failed on the pip version that comes with Ubuntu 14.04. That version is |
Running
pip install djangorestframework-jsonapi
fails as documented on Read the Docs. I believe the reason is that pip fails to recognize all the available version numbers appropriately.According to the setuptools docs, the
-
in the version number makes the posted version a "post-release" number. https://pythonhosted.org/setuptools/setuptools.html#specifying-your-project-s-versionHere is the output I saw when I tried to run the command:
I don't know for sure, but my guess is that in the absence of an actual version (i.e.,
2.0.0
), pip gives up when it only finds post release versions.The text was updated successfully, but these errors were encountered: