错误解决办法
爱打瞌睡的CV君
心之所向,素心以往。
展开
-
【Android studio错误处理】Can‘t determine type for tag ‘<macro name=“m3_comp_assist_chip_container_shape“>
很久没有新建项目文件,突然新建项目文件的时候,运行项目生产的Hello world的例子就报了这个错误。app目录下的build.gradle文件配置有问题,回退一下依赖的版本就解决了。转载 2023-07-10 10:46:43 · 10179 阅读 · 3 评论 -
【MySQL】解决java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect
解决java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect原创 2023-06-27 21:59:51 · 407 阅读 · 0 评论 -
【U盘】文件过大,无法复制到U盘问题的解决方案
解决 文件过大,无法复制到U盘 的问题原创 2023-06-07 14:14:40 · 7455 阅读 · 2 评论 -
【Python】pip安装库时存在缓存(及清除方法)
pip安装库时存在缓存(及清除方法)原创 2023-03-30 14:52:34 · 58103 阅读 · 5 评论 -
【MySQL】mysql-ERROR 1366 (HY000): Incorrect string value: ‘\xD5\xC5\xC8\xFD‘ for column ‘name‘ at row
错误为:插入中文出错解决方法为:第一步:使用表所在的数据库use [数据库名]第二步:修改字段alter table [表名] change [列名] [列名] varchar(20) character set utf8;原创 2022-04-05 16:52:59 · 1501 阅读 · 1 评论 -
【解决报错】‘async with‘ outside async function
【解决报错】'async with' outside async function原创 2022-02-24 10:57:18 · 3333 阅读 · 0 评论 -
免费安装HEVC视频扩展
免费安装HEVC视频扩展原创 2021-09-12 21:35:40 · 19581 阅读 · 15 评论 -
python库ffmpeg的错误解决方法:“Couldn‘t find ffmpeg or avconv - defaulting to ffmpeg, but may not work“
python库ffmpeg的错误解决方法:"Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work"原创 2021-08-11 20:37:48 · 24950 阅读 · 6 评论 -
Python读取xls(xlsx)文件报错:raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+‘; not supported‘)
解决办法:pip install pyexcel-xls安装这个库即可原创 2021-06-08 19:59:47 · 1939 阅读 · 3 评论 -
tesseract is not installed or it‘s not in your PATH解决办法!
pytesseract.pytesseract.TesseractNotFoundError: tesseract is not installed or it's not in your PATH错误解决办法。原创 2021-06-03 22:53:03 · 21391 阅读 · 0 评论 -
Cannot open‘************‘, Simulation FAILED due to fatal simulation errors
文章目录运行protues报错解决方案:运行protues报错运行protues出现报错查看具体错误,出现Cannot open’一个文件路径’Simulation FAILED due to fatal simulation errors其中,上述的路径往往包含用户名。解决方案:因为protues对中文不是很友好,中文用户名就会报错,可以新建一个用户名。新建用户名方法:创建本地用户帐户1、选择“开始” >“设置” >“帐户”,然后选择“家庭和其他用户”。(在某些版本原创 2021-05-10 16:56:45 · 3606 阅读 · 0 评论 -
对于zipfile解压缩包,出现中文乱码问题,问题解决方法
使用zipfile批量解压缩包时出现了中文乱码问题,本文针对此问题给出解决方法。原创 2021-05-09 22:52:50 · 5199 阅读 · 4 评论 -
AttributeError: module ‘pandas‘ has no attribute ‘Series‘
AttributeError: module ‘pandas’ has no attribute 'Series’使用pycharm出现:但在命令行中能成功运行:那么首先检查,首先检查,首先检查,文件命和pandas 冲突了。修改文件名,即可解决问题。作者:远方的星CSDN:https://blog.csdn.net/qq_44921056腾讯云:https://cloud.tencent.com/developer/column/91164本文仅用于交流学习,未经作者允许,禁止转载原创 2021-04-03 19:25:04 · 2963 阅读 · 3 评论