When trying to install guidata via pip install --user guidata with python 2.6, the installation breaks with the following error message:
File "/tmp/caribou/pip-build-6m1nnH/guidata/setup.py", line 151, in <module>
% sys.version_info.major,]},
AttributeError: 'tuple' object has no attribute 'major'
The setup.py script uses the named accessor sys.version_info.major which is only accessible from python 2.7 onwards. However, the meta-data lists compatibility with python 2.6.
When trying to install guidata via
pip install --user guidata
with python 2.6, the installation breaks with the following error message:The
setup.py
script uses the named accessorsys.version_info.major
which is only accessible from python 2.7 onwards. However, the meta-data lists compatibility with python 2.6.