11 2021 档案
摘要:##需要安装前置补丁 clearcompressionflag.exe、KB2919442、KB2919355、KB2932046、KB2959977、KB2937592、KB2938439、KB2934018。 使用odoo14官网安装包 地址:https://www.odoo.com/zh_CN
阅读全文
摘要:管理员身份运行命令窗 关闭hypervisorlaunchtype 以运行VMware bcdedit /set hypervisorlaunchtype off 开启hypervisorlaunchtype 以运行docker bcdedit /set hypervisorlaunchtype A
阅读全文
摘要:时间相关 函数名 作用 备注 get_month 返回对应的月份日期范围 get_quarter_number 获取当前季度 get_quarter 返回对应的季度日期范围 get_fiscal_year 返回对应财年范围 start_of 返回对应日期的起始时间 获取指定日期的,年/月/季度/星期
阅读全文
摘要:Numpy import numpy as np #类型转换 arr = np.array([3.7,-1.2,-2.6,0.5,12.9,10.1]) arr.astype(np.int32) # 转置 arr.T # 三元表达式的矢量运算 np.where(条件,值1,值2) # 排序 sort
阅读全文