摘要: python代码报错maximum recursion depth exceeded 阅读全文
posted @ 2023-01-09 15:56 林末 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 问题: centos使用yum安装软件,失败报错 [linmo@VM_0_10_centos ~]$ sudo yum install yum install tmux -y 错误:rpmdb: BDB0113 Thread/process 8178/139732838348864 failed: 阅读全文
posted @ 2022-02-08 17:47 林末 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 现象: 如图所示,使用ls查看目录下文件,发现文件名有乱码和奇怪的符号,通过rm命令无法删除; 解决方案: 此时可通过文件的inode删除文件 操作过程: 使用ls -il查看文件inode 通过命令find . -inum xxxx -delete 删除文件 End 阅读全文
posted @ 2022-01-22 17:40 林末 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 求两个字符串的最长公共子串(python版) 阅读全文
posted @ 2022-01-07 19:25 林末 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 现象:postman发送请求失败,报: Error: Client network socket disconnected before secure TLS connection was established 解决: 关闭代理开关:去掉设置中 Use the system proxy 前面的勾选 阅读全文
posted @ 2021-07-24 16:03 林末 阅读(19775) 评论(0) 推荐(0) 编辑
摘要: gevent程序使用Pycharm在debug时崩溃 阅读全文
posted @ 2021-07-23 16:26 林末 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 做自动化时需要从excel读取数据; 本文实现将excel文件数据读取为json格式,方便自动化调用 阅读全文
posted @ 2021-04-25 17:59 林末 阅读(54) 评论(0) 推荐(0) 编辑
摘要: CentOS使用yum安装python3 阅读全文
posted @ 2021-01-25 17:11 林末 阅读(4660) 评论(0) 推荐(0) 编辑
摘要: requests发送https请求时默认验证ssl证书,此时如果访问的地址ssl证书过期失效或不信任,则请求失败,为了使请求成功,可以设置verify为False,暂时不验证 r = requests.get(url, headers=header, verify=False) 移除ssl验证后,可 阅读全文
posted @ 2021-01-24 00:51 林末 阅读(1913) 评论(0) 推荐(0) 编辑
摘要: MySQL报错:1055 - Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'xxx' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 阅读全文
posted @ 2020-08-26 14:24 林末 阅读(3091) 评论(0) 推荐(1) 编辑
访客: 浏览: