I am trying to use the Kiwoom OpenAPI (for making automated stock trading program), which requires a 32-bit Python environment. However, to successfully use Kiwoom Open API I need to set up pandas in any 32-bit Python version, but I can't find how to install pandas 1.5.3 version (3.10 and 3.11)
Environment:
Windows 10 64 bit
Kiwoom OpenAPI (COM, 32-bit)
Python versions tested: 3.10 (32-bit), 3.11 (32-bit)
What I tried:
Command installing pykiwoom:
python -m pip install pykiwoom
And pip automatically tried to install pandas because of the pykiwoom package:
Collecting pandas (from pykiwoom)
Preparing metadata (pyproject.toml) ... error
ERROR: No matching distribution found for pandas==1.5.3
I searched Christoph Gohlke site for downloading the pandas 1.5.3 wheel for 32-bit pythonPython, but I couldn't find it.
Is there any way to install pandas for Python 32-bit?