更改 Google Colaboratory 中的系统时间
Changing the System Time in Google Colaboratory
我想在 Google Colab 中使用我的本地时间作为系统时间,但我相信默认情况下它设置为 UTC 时间,如下所示:
Current Date Format
如何将系统时间更改为本地时间?
这是操作方法。对我来说,我住在 Asia/Bangkok
!rm /etc/localtime
!ln -s /usr/share/zoneinfo/Asia/Bangkok /etc/localtime
!date
现在我得到 Tue Apr 30 20:12:30 +07 2019
。您可以通过
查看时区列表
!ls -al /usr/share/zoneinfo
然后进入每个组的子目录。 (或者直接搜索 google)
我想在 Google Colab 中使用我的本地时间作为系统时间,但我相信默认情况下它设置为 UTC 时间,如下所示: Current Date Format
如何将系统时间更改为本地时间?
这是操作方法。对我来说,我住在 Asia/Bangkok
!rm /etc/localtime
!ln -s /usr/share/zoneinfo/Asia/Bangkok /etc/localtime
!date
现在我得到 Tue Apr 30 20:12:30 +07 2019
。您可以通过
!ls -al /usr/share/zoneinfo
然后进入每个组的子目录。 (或者直接搜索 google)