06 2021 档案
windows解除文件占用
摘要:问题现象 有时候删除或重命名一些文件,会提示在另一个程序中打开,但是未提示具体是哪个程序在使用, 如下图所示: 解决办法 打开“任务管理器”,依次点击: 性能--> 打开资源监视器 选择:CPU --> 搜索句柄 输入被占用的文件名,稍等片刻 搜索结果出来后,即可知道什么程序占用了文件 右键,结束进 阅读全文
posted @ 2021-06-30 14:08 jaysonteng 阅读(1051) 评论(0) 推荐(0) 编辑
谷歌浏览器 禁用 reading list
摘要:在浏览器输入:chrome://flags/ 在页面搜索:reading list 如下图所示,禁用此功能即可 阅读全文
posted @ 2021-06-30 10:49 jaysonteng 阅读(198) 评论(0) 推荐(0) 编辑
将numpy中的nan替换为python中的None
摘要:问题说明 想将numpy数据批量插入mysql,发现如下报错: pymysql.err.ProgrammingError: nan can not be used with MySQL 替换方法 ## data是numpy数据,格式入下: data = [[nan, nan, '李幼斌', 'sta 阅读全文
posted @ 2021-06-23 17:31 jaysonteng 阅读(3929) 评论(0) 推荐(0) 编辑
python pandas append 或concat报错:pandas.errors.InvalidIndexError: Reindexing only valid with uniquely valued
摘要:问题原因 索引由于特殊操作存在重复的情况 解决办法 1、需要分别查看行索引和列索引 网上很多方法是重置行索引,有可能还是无法解决问题,原因是可能是列索引存在重复的情况 2、重置行索引办法 df.reset_index(drop=True, inplace=True) 3、重置列索引方法 df.col 阅读全文
posted @ 2021-06-23 17:09 jaysonteng 阅读(2087) 评论(0) 推荐(0) 编辑
python爬虫随机生成headers里的user agent
摘要:安装模块 pip install fake_useragent 生成user agent import requests from fake_useragent import UserAgent ua = UserAgent() headers = {'User-Agent': ua.random} 阅读全文
posted @ 2021-06-23 11:44 jaysonteng 阅读(474) 评论(0) 推荐(0) 编辑
python定时任务
摘要:使用模块 apscheduler 代码 import time from apscheduler.schedulers.blocking import BlockingScheduler def func(a, b): # 定时执行的函数 print(a, b) if __name__ == '__ 阅读全文
posted @ 2021-06-23 10:32 jaysonteng 阅读(69) 评论(0) 推荐(0) 编辑
windows无法调节电脑亮度
摘要:解决办法 情况1. 安装了向日葵远程软件 **解决方法:**在向日葵设置中,隐私设置--> 黑屏模式,关掉 情况2.卸载驱动 **解决方法:**开始-->管理工具-->计算机管理-->设备管理器-->监视器-->Generic Monitor(orayDPMS)-->右键进行卸载,如下图所示 参考链 阅读全文
posted @ 2021-06-19 15:09 jaysonteng 阅读(677) 评论(0) 推荐(0) 编辑
check_hostname requires server_hostname
摘要:调用接口时报此错误 解决办法:关掉代理 阅读全文
posted @ 2021-06-18 16:43 jaysonteng 阅读(57) 评论(0) 推荐(0) 编辑
pytorch 使用gpu报错CUDA error: no kernel image is available for execution on the device
摘要:报错原因 cuda版本和 pytorch不匹配 解决办法 点击此连接 进入如下图所示的页面 查看cuda版本:nvidia-smi 根据自己所需的torch、系统、cuda版本选择对应的安装方式即可 查看各版本对应关系 1.这里pytorch和cudatoolkit版本对应关系: https://p 阅读全文
posted @ 2021-06-17 11:35 jaysonteng 阅读(20689) 评论(1) 推荐(0) 编辑
python压缩指定文件或目录为zip
摘要:代码如下: #压缩文件 def get_zip(base_dir, zip_name): zp = zipfile.ZipFile(zip_name, 'w', zipfile.ZIP_DEFLATED) for dir_path, dir_name, file_names in os.walk(b 阅读全文
posted @ 2021-06-16 15:07 jaysonteng 阅读(1321) 评论(0) 推荐(0) 编辑
CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles"
摘要:报错情况 安装dlib时报错,情况如下 CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probab 阅读全文
posted @ 2021-06-10 14:54 jaysonteng 阅读(3621) 评论(0) 推荐(0) 编辑
module 'torchvision' has no attribute 'ops'
摘要:解决办法 torch与torchvision版本不兼容,先卸载原来版本: pip uninstall torch pip uninstall torchvision pip uninstall torchaudio # 若有 再安装 installed torch-1.8.1 pip install 阅读全文
posted @ 2021-06-07 11:43 jaysonteng 阅读(2572) 评论(0) 推荐(0) 编辑
from torchvision import _C ImportError: DLL load failed: 找不到指定的模块。
摘要:解决办法 卸载torchvision,pip uninstall torchvision 使用pip install torchvision==0.2.2.post3安装这个版本的torchvision,可以成功引入 参考链接:https://blog.csdn.net/qq_35037684/ar 阅读全文
posted @ 2021-06-07 11:24 jaysonteng 阅读(557) 评论(0) 推荐(0) 编辑
python logging 日志按时间间隔自动切分
摘要:代码如下: import logging, os, time, re from stat import ST_MTIME from logging.handlers import TimedRotatingFileHandler # 自定义logger输出格式的,因为logging自带的TimedR 阅读全文
posted @ 2021-06-04 17:57 jaysonteng 阅读(1349) 评论(0) 推荐(0) 编辑
labelImg闪退【解决方案】
摘要:1、你的labelImg路径中不能出现中文,如果有,换个不带中文的路径 2、删除 C:\Users\YourAccount\.labelImgSettings.pkl,重新打开labelImg,问题解决。 原文链接:https://blog.csdn.net/csdn_zhishui/article 阅读全文
posted @ 2021-06-03 18:31 jaysonteng 阅读(5813) 评论(0) 推荐(0) 编辑