Python Installation error - Lightsail

Hi TradeHull Team,

I am getting this below mentioned error while running my python installation in my server(lightsail). It gives a message

ERROR: Could not find a version that satisfies the requirement pandas-ta (from versions: none)
ERROR: No matching distribution found for pandas-ta

Need your guidance,


Hi @Rizwan ,

The error occurs because pandas-ta no longer supports Python 3.8.
The library is available only for Python 3.9 and above, so pip cannot find any compatible version for Python 3.8, hence the message:

ERROR: Could not find a version that satisfies the requirement pandas-ta
ERROR: No matching distribution found for pandas-ta

To resolve this, please upgrade the server’s Python version to Python 3.9 or higher, and then install pandas-ta:

pip install pandas-ta
  • If you want to retain python version 3.8, Install directly from GitHub

This bypasses PyPI compatibility and works on 3.8.

pip install git+https://github.com/twopirllc/pandas-ta.git

I have updated to 3.12 version and now its working, My issue is resolved. Thank You So Much… Tradehull team for your prompt support…

1 Like