I am trying to install a specific version of python package tables==2.4.0
for some reasons. But every time I am getting the error
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-tJYQ8o/tables/
.
If I try with pip install tables
, then this works fine and tables package with version 3.4.3 will be installed. But I need specifically 2.4.0
or 2.x
.
I have also checked
https://stackoverflow.com/questions/44981793/python-setup-py-egg-info-failed-with-error-code-1
and
https://stackoverflow.com/questions/35991403/pip-install-returns-python-setup-py-egg-info-failed-with-error-code-1
but didn't get success.I also tried virtualenv, the same error is coming with this version and latest version is working fine.I am using virtualenv for python version 2.7.12
in Ubuntu 14.04. Can anybody suggest me for this issue.
Thanks.