This fixed it for now:
First I downgraded pandas to 2.0
pip install --upgrade --force-reinstall pandas==2.0
- Then i set the regions to English (united states):
- Go to Settings > Time & Language > Language & Region.
- Check if
English (United States)
is available under the Languages section. If it’s not, add it by clicking on “Add a language” and searching forEnglish (United States)
. - Under Region, ensure that the United States is selected.
- Open Control Panel.
- Go to Clock and Region > Region.
- Click on the Administrative tab.
- Click on the Change system locale button.
- Make sure
English (United States)
is selected, and then click OK.
and then I set manually the locale in the Rhino Python script:
import locale
locale.setlocale(locale.LC_ALL, 'en_US.UTF-8')
import pandas as pd
Hope this might be usefull for anyone.
Leandre Sassi