You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to install django-native-tags using pip, the line long_description=open('README.rst').read() in setup.py raises an IOError (on Mac OS X). Changing it to long_description=open('./README.rst').read() solved the problem for me.
I'm not completely sure if it is a real issue or something local.
Thanks,
Hidde-Jan
The text was updated successfully, but these errors were encountered:
Hi,
When trying to install django-native-tags using pip, the line
long_description=open('README.rst').read()
insetup.py
raises an IOError (on Mac OS X). Changing it tolong_description=open('./README.rst').read()
solved the problem for me.I'm not completely sure if it is a real issue or something local.
Thanks,
Hidde-Jan
The text was updated successfully, but these errors were encountered: