gpt4 book ai didi

time - Google Colab 中的不同时区

转载 作者:行者123 更新时间:2023-12-04 13:18:27 25 4
gpt4 key购买 nike

问题:为什么 Colab 的时区与本地时区不同?

背景::我住在美国。但是 Colab 时间(我指定的是美国时区)和本地时间之间有五个小时的差异。

代码:

!rm /etc/localtime
!ln -s /usr/share/zoneinfo/US /etc/localtime # the time should be around 11:20
!date

结果:2019 年 8 月 7 日星期三 16:20:40 UTC

最佳答案

您可以分两步更改时区:

第 1 步:在层次结构中查找您的时区名称

!ls -al /usr/share/zoneinfo/

对于美国,您将通过以下方式再遍历时区树一级:

!ls -al /usr/share/zoneinfo/US

这给了你

drwxr-xr-x  2 root root 4096 Dec 22 02:14 .
drwxr-xr-x 21 root root 4096 Dec 22 02:14 ..
lrwxrwxrwx 1 root root 20 Oct 23 06:18 Alaska -> ../America/Anchorage
lrwxrwxrwx 1 root root 15 Oct 23 06:18 Aleutian -> ../America/Adak
lrwxrwxrwx 1 root root 18 Oct 23 06:18 Arizona -> ../America/Phoenix
lrwxrwxrwx 1 root root 18 Oct 23 06:18 Central -> ../America/Chicago
lrwxrwxrwx 1 root root 13 Oct 23 06:18 Eastern -> ../posixrules
lrwxrwxrwx 1 root root 21 Oct 23 06:18 East-Indiana -> ../America/Fort_Wayne
lrwxrwxrwx 1 root root 19 Oct 23 06:18 Hawaii -> ../Pacific/Honolulu
lrwxrwxrwx 1 root root 18 Oct 23 06:18 Indiana-Starke -> ../America/Knox_IN
lrwxrwxrwx 1 root root 18 Oct 23 06:18 Michigan -> ../America/Detroit
lrwxrwxrwx 1 root root 9 Oct 23 06:18 Mountain -> ../Navajo
lrwxrwxrwx 1 root root 22 Oct 23 06:18 Pacific -> ../America/Los_Angeles
lrwxrwxrwx 1 root root 17 Oct 23 06:18 Samoa -> ../Pacific/Midway

第 2 步:

使用在步骤 1 中获得的正确引用设置时区。如果你住在在芝加哥,正确的引用是:Central。您可以通过以下方式更改 Google Colabo 时区:

!rm /etc/localtime
!ln -s /usr/share/zoneinfo/US/Central /etc/localtime
!date

请记住,正确的引用是在两层层次结构中首先包含地区 (US/Central),而不仅仅是时区 Central

关于time - Google Colab 中的不同时区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57398787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com