- 博客(7)
- 收藏
- 关注
原创 python subprocess.Popen运行 iperf3 失败,没有反应
运行rr后, cmd中输入netstat -aon | findstr "[^0-9]5005[^0-9]" 查看iperf服务是否开启,发现未开启。python中也没有回显。把上面代码中的iperf3.exe改为绝对路径后,rr和rr1中,iperf服务器均可正常开启。运行rr1,返回错误代码-1073741515,百度是缺失组件。
2023-04-10 11:06:19 678
原创 cmd窗口执行exe,LookupError: unknown encoding: cp65001
运行#coding=utf-8的py文件生成的exe文件失败。原因是cmd窗口的编码格式是65001(utf-8)。解决方法:将cmd窗口的格式改为936(GBK)就可以正常运行上面的程序。临时修改cmd窗口的代码命令:chcp 936查看当前编码的命令:chcp,或者右键窗口,点击属性查看。...
2022-07-19 16:06:45 668
原创 errCode: -502005 errMsg: “doc.get:fail -502005 [ResourceNotFound]
errCode: -502005errMsg: "doc.get:fail -502005 [ResourceNotFound] Db or Table not exist. Please check your request, but if the problem cannot be solved, contact us."
2022-06-23 20:25:03 271
原创 python使用unittest,用例通过却显示Terminated的原因。
问题如图是因为给self._testMethodDoc赋值导致的。self._testMethodDoc = data_case.get_title(i)注释后能够正常显示
2021-09-15 11:02:48 523 1
原创 python中用xlrd和xlwt写入excel,在sheet中先写入的数据被后写入的数据覆盖的问题。
from configs.config_manage import EXCEL_PATHimport xlrdfrom xlutils.copy import copysheet_name = "Sheet1"filename = "D:\\prac.xls"col=[1,2,3]wb = xlrd.open_workbook(filename, formatting_info = True) # 打开excel文件sheet = wb.sheet_by_name(sheet_name).
2021-07-24 18:16:01 2903
原创 ValueError: check_hostname requires server_hostname
关闭手动代理就可以了。设置-网络和Internet-代理
2021-07-05 13:46:15 104
原创 Assertion failed原因
python跑自动化时跑不通,显示Assertion failedD:\python\lib\site-packages\requests\adapters.py:510: ProxyErrorD:\python\lib\site-packages\urllib3\util\connection.py:86: ConnectionRefusedError原因是开了软件抓包,或者是开了代理。抓包时代理也会打开的。不再监控,关掉电脑的代理就解决问题了。...
2021-07-01 14:25:06 2121
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人