We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While setting up a local ok server, pip install -r requirements.txt prints the following error message in red
pip install -r requirements.txt
requests-oauthlib 1.2.0 has requirement oauthlib>=3.0.0, but you'll have oauthlib 2.0.2 which is incompatible.
It seems Flask-OAuthlib==0.9.4 requires requests-oauthlib, whose latest released version (by Apr 8 2019) requires oauthlib[signedtoken]>=3.0.0.
Flask-OAuthlib==0.9.4
requests-oauthlib
oauthlib[signedtoken]>=3.0.0
However, ok actually requires oauthlib==2.0.2. Thus the conflict.
oauthlib==2.0.2
The text was updated successfully, but these errors were encountered:
# OAuth oauthlib==2.1.0 Flask-OAuthlib==0.9.5
I think this config will work fine but I haven't tested it with OK
Sorry, something went wrong.
No branches or pull requests
While setting up a local ok server,
pip install -r requirements.txt
prints the following error message in redIt seems
Flask-OAuthlib==0.9.4
requiresrequests-oauthlib
, whose latest released version (by Apr 8 2019) requiresoauthlib[signedtoken]>=3.0.0
.However, ok actually requires
oauthlib==2.0.2
. Thus the conflict.The text was updated successfully, but these errors were encountered: