有没有办法获取 pandas 可用的语言环境列表?

Is there a way to get the list of locales available to pandas?

我一直在尝试使用 Windows 上的熊猫 month_name 从日期时间系列中获取月份的名称,使用英语以外的其他语言。

根据函数的定义,我只需要将语言环境参数设置为我想要的语言代码,但我一直得到'Error: unsupported locale setting'。

可能是什么问题?有没有办法让 pandas 可以使用当前语言环境?

在bash中,执行locale -a获取语言环境

obj = pd.to_datetime('2021-01-15')
obj.month_name(locale ='en_US.utf8') 

更多信息:

  • What is the correct way to set Python's locale on Windows?
  • Python locale error: unsupported locale setting