Trying to upgrade my python 2.7 scripts to the latest python 3.x for my PC running Windows 7-x64. To do so, I installed python 3.8.9.
I get a nasty error when I press ENTER after typing "import pandas" in a script that also import wxpython. I tracked down the issue to pandas.
Checking pandas installation:
pandas in e:\python38-32\lib\site-packages (2.0.3)
python-dateutil>=2.8.2 in e:\python38-32\lib\site-packages (from pandas) (2.9.0.post0)
pytz>=2020.1 in e:\python38-32\lib\site-packages (from pandas) (2025.2)
tzdata>=2022.1 in e:\python38-32\lib\site-packages (from pandas) (2025.2)
numpy>=1.20.3 in e:\python38-32\lib\site-packages (from pandas) (1.24.4)
six>=1.5 in e:\python38-32\lib\site-packages (from python-dateutil>=2.8.2->pandas) (1.17.0)
Everything seems fine, but something there is wrong.
