随笔分类 -  报错记录

conda安装报错:Verifying transaction: failed CondaVerificationError:
摘要:报错如下 解决办法 把报错图中框出来的路径删掉 然后重新执行安装、或新建环境命令就可以了 阅读全文
posted @ 2022-03-22 18:37 jaysonteng 阅读(3660) 评论(0) 推荐(0) 编辑
yolov5导入模型出现ModuleNotyolov5导入模型出现ModuleNotFoundError: No module named ‘models‘FoundError: No module named ‘models‘
摘要:一. 问题 现有文件目录如下所示: 现在在这层目录下导入模型: import torch model = torch.load('yolov5/yolov5s.pt') 出现问题: 二. 解决方案 在导入模型前,把yolov5的路径insert到sys.path import torch impor 阅读全文
posted @ 2021-11-22 14:08 jaysonteng 阅读(2092) 评论(0) 推荐(0) 编辑
Jupyter Notebook python.exe 无法找到入口 无法定位程序输入点...动态链接库
摘要:弹窗如下 解决办法 删除弹窗对应位置的 pythoncom*.dll文件 为了保险起见,可以对其重命名作为备份 参考链接 阅读全文
posted @ 2021-09-10 09:09 jaysonteng 阅读(1625) 评论(0) 推荐(0) 编辑
UnicodeDecodeError: 'gbk' codec can't decode byte 0xa5 in position 1508: illegal multibyte sequence
摘要:报错内容如下 Python 3.7.10 | packaged by conda-forge | (default, Feb 19 2021, 15:37:01) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "cred 阅读全文
posted @ 2021-08-27 10:42 jaysonteng 阅读(486) 评论(0) 推荐(0) 编辑
pip安装torch1.7报错,ERROR: torch has an invalid wheel, .dist-info directory not found
摘要:报错截图 解决办法 安装cpu版本,使用如下命令: pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio 0.7.0 -f https://download.pytorch.org/whl/torch_stable.html 安 阅读全文
posted @ 2021-08-25 09:47 jaysonteng 阅读(7647) 评论(0) 推荐(1) 编辑
pandas 存入mysql报错 DLL load failed: 找不到指定的程序
摘要:报错记录: ... > 14 from cryptography.hazmat.bindings._openssl import ffi, lib ... ImportError: DLL load failed" 解决办法 pip uninstall pyopenssl pip uninstall 阅读全文
posted @ 2021-08-06 11:51 jaysonteng 阅读(57) 评论(0) 推荐(0) 编辑
np.isnan 报错
摘要:报错如下 TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely 解决办法 将 np.isnan 换成 pd.isna 阅读全文
posted @ 2021-07-23 15:18 jaysonteng 阅读(434) 评论(0) 推荐(0) 编辑
Failed to get convolution algorithm. This is probably because cuDNN failed to initialize
摘要:出现这个错误的配置是: 1、tensorflow-gpu==1.13 + tensorflow-probability == 0.6.0 2、cuda10.0 3、cudnn-7.4.2 4、ubuntu16.04 后降低版本: 1、tensorflow-gpu==1.12 + tensorflow 阅读全文
posted @ 2021-07-12 14:59 jaysonteng 阅读(67) 评论(0) 推荐(0) 编辑
windows pip is configured with locations that require TLS/SSL, however the ssl module in Python i...
摘要:原因 Anaconda 环境变量未配置完全 解决办法 需要配置的环境变量: D:\ProgramData\Anaconda3 D:\ProgramData\Anaconda3\Scripts D:\ProgramData\Anaconda3\Library\bin 参考链接 阅读全文
posted @ 2021-07-11 23:23 jaysonteng 阅读(128) 评论(0) 推荐(0) 编辑
python opencv cv2打开中文路径图片报错:cv2.error: OpenCV(4.5.1) ..\modules\imgproc\src\color.cpp:182: error
摘要:报错如下 Traceback (most recent call last): File "D:\Users\Admin\Anaconda3\envs\tf1\lib\site-packages\IPython\core\interactiveshell.py", line 3437, in run 阅读全文
posted @ 2021-07-09 17:30 jaysonteng 阅读(2536) 评论(0) 推荐(0) 编辑
CMake must be installed to build the following extensions: dlib
摘要:安装 python face_recognition模块时报错 解决办法: pip3 install cmake 阅读全文
posted @ 2021-07-01 14:24 jaysonteng 阅读(410) 评论(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) 编辑
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 阅读(20690) 评论(1) 推荐(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) 编辑
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) 编辑
AttributeError: 'str' object has no attribute 'decode'
摘要:报错详情 File "/home/ffggh/miniconda3/envs/py36/lib/python3.6/site-packages/keras/engine/saving.py", line 242, in _deserialize_model model_config = json.l 阅读全文
posted @ 2021-04-24 14:37 jaysonteng 阅读(306) 评论(0) 推荐(1) 编辑
spark py4j.protocol.Py4JNetworkError: An error occurred while trying to conn
摘要:解决办法: 1、py4j版本 查看conda中的py4j版本与 spark/python/lib中的py4j版本是否一致,如果不一致,先卸载conda或本地环境中的Py4j,重新安装。 参考链接:https://blog.csdn.net/weixin_40122615/article/detail 阅读全文
posted @ 2020-10-08 00:08 jaysonteng 阅读(1662) 评论(0) 推荐(0) 编辑
cudart64_101.dll not found解决方法
摘要:安装tensorflow GPU版本时遇到 Could not load dynamic library ‘cudart64_101.dll’; dlerror: cudart64_101.dll not found 1.在目录C:\Program Files\NVIDIA GPU Computin 阅读全文
posted @ 2020-10-05 17:28 jaysonteng 阅读(7210) 评论(0) 推荐(0) 编辑