'Installing openpyxl in python 2.7

I am currently using Python 2.7 and i want to work on Excel sheets. So i found a package called openpyxl 2.4.0. I tried installing it by using pycharm and pip command. But it shows following error

Could not find a version that satisfies the requirement openpyxl (from version s: ) 
No matching distribution found for openpyxl

should i go for another version of python? Please help me with issue. Thanks in advance.



Solution 1:[1]

System install of openpyxl may not work in lower Python versions. You can try to install development edition of openpyxl. You can follow the below link to install development edition of Python. This way you won't impact package installs in your machine. https://openpyxl.readthedocs.io/en/2.5/windows-development.html#:~:text=Install%20a%20development%20version%20of,pip%20install%20%2De%20.&text=Releases%20for%20legacy%20versions%20of%20Python%3A&text=0%20for%20Python%202.7

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sangram Mohanty