我在 tryton.org 页面中安装所有依赖项,如建议,然后安装 tryton 客户端并构建 trytond(server)。
但是当我尝试初始化数据库时
C:\Python27/python.exe C:\Python27/Scripts/trytond -c C:\Python27/Scripts/trytond.conf -d --all
我得到标题错误,就像没有重新调整 UTC 时间
我将时间更改为 UTC,就像建议这个答案一样,重新启动我的电脑,现在我的时区是 UTC。
https://superuser.com/questions/482860/does-windows-8-support-utc-as-bios-time
但是继续错误
应该修改任何想法或文件以纠正此错误?
trytond.conf
[jsonrpc] 听 == localhost:8000 主机名 == localhost
[数据库] uri == postgresql://tryton:tryton@localhost:5432/
[会话] 超时 == 600 super_pwd == tUYUV3PebcivM
[报告] unoconv == "C:\Program Files (x86)\LibreOffice 5\program\python.exe" unoconv
编辑
print time.strftime("%Z%z")
Hora estándar oeste, SudaméricaHora estándar oeste, Sudamérica
print time.gmtime()
time.struct_time(tm_year=2016, tm_mon=1, tm_mday=9, tm_hour=20, tm_min=15, tm_sec=33, tm_wday=5, tm_yday=9, tm_isdst=0)
print time.localtime()
time.struct_time(tm_year=2016, tm_mon=1, tm_mday=9, tm_hour=16, tm_min=15, tm_sec=33, tm_wday=5, tm_yday=9, tm_isdst=0)