-
Notifications
You must be signed in to change notification settings - Fork 297
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
otauth2 pip installation failure with django 1.7 and 1.8 #24
Comments
Seems like the oath2 does not support python 3... |
Yes, this works with python2.7 . |
but you can use oauth2 1.90post1 with django 1.7 && django 1.8. |
Anyone from the future (including me) who runs into this problem there is a fix for this that will lead you into another problem. So it turns out that at the time (2015 was when this issue was submitted) the
This is updated for Python 3. You will then run into the same error except for the TL;DR: Use Python 2 to install packages using this command:
|
json response for instagram user data + tumblr login
during the pip install -r requirements.txt I have the following message
Collecting nose==1.3.4 (from -r requirements.txt (line 23))
Downloading nose-1.3.4-py3-none-any.whl (154kB)
100% |████████████████████████████████| 155kB 474kB/s
Collecting oauth2==1.5.211 (from -r requirements.txt (line 24))
Downloading oauth2-1.5.211.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 20, in
File "/tmp/pip-build-a8l23vkw/oauth2/setup.py", line 18
print "unable to find version in %s" % (VERSIONFILE,) ^
SyntaxError: invalid syntax
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-a8l23vkw/oauth2
I tried with django 1.7 and 1.8 virtual environments with python3
has anyone else met the same issue ?
Thanks in advance
The text was updated successfully, but these errors were encountered: