I use Python on my Centos computer, and when I try to run my program, I see this error:
Running setup.py egg_info for package pyepr
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/tmp/pip-build-root/pyepr/setup.py", line 68, in <module>
print('using EPR C API sources at "{}"'.format(eprsrcdir))
ValueError: zero length field name in format
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/tmp/pip-build-root/pyepr/setup.py", line 68, in <module>
print('using EPR C API sources at "{}"'.format(eprsrcdir))
ValueError: zero length field name in format
I already checked other questions on this, and I already installed Python 2.7.6 and set it as the default configuration as shown below ....
$ python -V
Python 2.7.6
Something went wrong, but I donβt know what.
Does anyone have an idea?
thank
source
share