not

Pycharm读excel文件报错xlrd.biffh.XLRDError: Excel xlsx file not supported

解决方法: 先卸载低版本的xlrd,然后安装新版本 pip uninstall xlrd pip install xlrd==1.2.0 ......
XLRDError supported Pycharm 文件 Excel

题解 ARC140E【Not Equal Rectangle】

萌萌构造题,随便构造构造就做出来了。似乎跟官方题解思路一样。 首先解决以下问题:给定一个质数 \(P\),构造一个每个数在 \(0\sim P-1\) 的大小为 \(P^2\times P^2\) 的矩阵,满足不存在 \(x_1\ne x_2,y_1\ne y_2\) 使得 \(a_{x_1,y_1 ......
题解 Rectangle Equal 140E ARC

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; ERROR 1410 (42000): You are not allowed to create a user with GRANT

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;ERROR 1410 (42000): You are not allowed to create a user with GRANT 解决办法 以下是 8.0版本的 ......
GRANT 39 PRIVILEGES allowed OPTION

org.springframework.kafka.listener.ListenerExecutionFailedException: Listener method could not be invoked with the incoming message

问题描述 kafka在yml文件中未开启批量消费时,程序正常运行;但一开启正常消费后,就直接报错;排查问题的过程中一直觉得是配置文件里的问题,最后发现是消费者接受的参数类型错误 问题本质 消费者开启批量消费数据后,不能用单个实体类接收参数,而应该用list 解决方法 修改消费者函数参数类型 ......

Oracle 19c 升级错误【verify_queryable_inventory returned ORA-20001: Latest xml inventory is not loaded into table】

作为一个数据库爱好者,手里的数据库没几个月就得升级一次。 升级收尾运行【datapatch -verbose】的时候,经常遇到这个错误【verify_queryable_inventory returned ORA-20001: Latest xml inventory is not loaded ......

Flutter 项目运行到ios模拟器报错 : Error (Xcode): SDK does not contain 'libarclite'

Flutter 项目运行到ios模拟器报错: Error (Xcode): SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefaul ......
模拟器 libarclite Flutter contain 项目

解决TypeError: string indices must be integers, not str

点击查看代码 ExtendValue = { "area": "1", "info": "{\"year\": 2014, \"a\": 12, \"b\": 3, \"c\":5}", "trip_country": "CN" } 在按照字典访问的时候,报错。TypeError: string i ......
TypeError integers indices string must

ROS2 删除一个工作空间文件夹,source后终端出现not found ...... local_setup.bash解决

问题描述 我在主目录同时开了多个ROS2工作空间,其中一个不想用了,直接删除后,终端出现这两行提示: 第二行是因为bash.rc文件里面source的setup.bash命令没有删除,所以: gedit ~/.bashrc source ~/.bashrc 删除source ~/rlarm_ws/i ......
local_setup 文件夹 终端 文件 source

[Vue warn]: Component provided template option but runtime compilation is not supported in this build of Vue. Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js".

这个警告是因为你提供了一个模板选项(template option),但在当前的Vue构建版本中不支持运行时编译。解决该问题的方法是将你的打包工具配置别名(alias)将 "vue" 指向 "vue/dist/vue.esm-bundler.js"。 具体来说,如果你使用的是Webpack或者vit ......
quot bundler vue compilation esm-bundler

SpringBoot配置报错:Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class

报错: Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to ......

android编译kanzi 问题 (2) Gradle sync failed: NDK not configured. Download it with SDK manager. Preferred NDK version is '21.1.6352462'.

问题原因: 这个是因为本地网络不佳,下载NDK的包,然后本地已经存在的和android工程设置的又不匹配。 解决办法: 修改NDK版本 把 21.3.6528147 改成提示的 21.1.6352462 ......
configured NDK Preferred Download android

android编译kanzi 问题 (1) Caused by: java.io.FileNotFoundException: Error: Could not find or access Kanzi's Android libraries directory: C:\XXXXXXX

问题原因: 当前的安卓工程找不到kanzi 的android库库目录。大多数的android工程里都会带有一个kanzi_home的路径,这个和本机不匹配就会有该问题。 解决办法: android_gradle 下的local.properties 改下kanzi home 路径,跟自己本机电脑的环 ......

error: object StdIn is not a member of package io问题的解决

问题描述 问题解决 StdIn是在2.11之后才有的,之前的不具有,我现在是2.10.7,只要更新版本即可; ......
package object member 问题 error

koa2 使用koa-body引入报错 koaBody is not a function

改变写法 原写法: const bodyParser = require('koa-body') app.use(bodyParser({ multipart: true })) 修改后 const { koaBody } = require('koa-body'); app.use(koaBody ......
koa function koa-body koaBody koa2

通过ssh在服务器上使用mujoco,报错Failed to initialize GLFW;ERROR: could not initialize GLFW

破案了,如果是通过ssh在服务器上使用mujoco,通常情况下是没法simulate的,也不能render! 所以服务器没有图形界面就真的很糟心 其余报错原因: 安装Mujoco、mujoco-py、multiagent-compete踩坑记录 ......
initialize GLFW 服务器 mujoco Failed

连接MySQL时报错:Public Key Retrieval is not allowed的解决方法

解决方法:连接设置——驱动属性——allowPublicKeyRetrieval=false(这里的运输公钥检索是默认关闭的,需要把它开启),改为allowPublicKeyRetrieval=true即可。 连接数据库后,如果不想把此项开启,那在改为false就行,连接过一次后面都可正常在重新连接 ......
Retrieval 时报 allowed 方法 Public

package dbutil is not in std

一、概述 使用LiteIDE运行go代码出现的错误。 package dbutil is not in std 原因:新建包的目录结构不对。 解决办法: 在项目目录中新建一个文件夹,然后把你的dbutil工具类移动过去或者新建一个即可 ......
package dbutil not std is

Navicat连接Oracle数据库报错:oracle library is not loaded解决方法

连接Oracle时提示“oracle library is not loaded”。 去Oracle官网下载Oracle Instant Client Downloads。 https://www.oracle.com/database/technologies/instant-client/dow ......
Navicat library 数据库 方法 数据

$GOPATH/go.mod exists but should not

一、概述 开发工具:LiteIDE 现象:运行项目报以下异常 $GOPATH/go.mod exists but should not 错误: 进程退出代码 1. 二、解决办法 去掉LiteIDE开发工具中的GOPATH,然后再运行就行了(查看-->选项-->GolangPackage) ......
GOPATH exists should but mod

mybatis解决nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping:

错误原因 在mybatis中SQL添加了注释 解决方法 删除相关无用语句 参考链接 【1】https://blog.csdn.net/daming1/article/details/107336871 ......

Name or service not known 完美解决

VMware CentOS7 Ping指令报错:Name or service not known1.问题实质:网络配置错误 2.问题原因:本地虚拟机网卡,虚拟机网络,虚拟机内部CentOS系统,三方网络配置不匹配 3.解决思路:保证本地虚拟机网卡,虚拟机网络,虚拟机内部CentOS系统,三方网络配 ......
service known Name not or

Mac安装mysql问题之-bash: mysql: command not found

在Mac上安装好之后,在系统偏好设置里找到mysql,点击并选择启动mysql; 打开终端面板,输入:mysql -u root -p 问题来了,因为之后显示的是:-bash: mysql: command not found (这是什么意思?怎么办?怎么办?多幸运你看到这篇文章了,不用像我一样花很 ......
mysql command 问题 found bash

seata 1.8.0 can not get cluster name in registry config 'service.vgroupMapping.default_tx_group', please make sure registry config correct

* [调式源码解决 seata 报错 can not get cluster name 问题 - 掘金](https://juejin.cn/post/7203377276557885498) seata: enabled: true application-id: ${spring.applica ......

Linux Centos7.5错误:ping外网报错Name or service not known

https://www.cnblogs.com/Zeros/p/16745414.html 问题描述:1 CentOS7.5,当执行ping www.baidu.com命令时,提示Name or service not known出现问题可能情况:1、电脑上禁用VMware相关网络服务。 2、Lin ......
错误 Centos7 service Centos Linux

seata-server-1.8.0 | Could not resolve placeholder 'console.user.username' in value "${console.user.username}"  | "${seata.security.secretKey}"

PS D:\gitrepo\seata-server-1.8.0\seata> * [Seata1.6.1启动报错:console.user.username\_seata could not resolve placeholder 'console.user.-CSDN博客](https://bl ......
quot username console seata user

Java 解析 JSON 对象报错:JSONException: can not cast to JSONObject JSONArray jsonArray = JSON.parseArray(body)

Java 解析 JSON 对象报错:JSONException: can not cast to JSONObject 使用了阿里的 JSON 解析库,在 JSON.parseObject(body) 解析返回 JSON 字符串时报错:JSONException: can not cast to J ......

Error: testWhileIdle is true, validationQuery not set

Error: testWhileIdle is true, validationQuery not set 说明 使用springboot连接数据库,启动的时候报错:testWhileIdle is true, validationQuery not set。但是不影响系统使用,数据库等一切访问正常 ......
validationQuery testWhileIdle Error true not

slam相关-Sophus库cmake报错target "CUDA::cusolver" not found.

报错细节 用cmake编译Sophus库时,有类似如下报错 CMake Error at test/core/CMakeLists.txt:18 (ADD_EXECUTABLE): Target "test_sim3" links to target "CUDA::cublas" but the t ......
quot cusolver Sophus target cmake

mybatis-plus的配置文件中mapper-locations失效的导致Property 'mapperLocations' was not specified的问题解决

不能解决的话,参考:springboot项目使用mybatis-plus 时出现 Property ‘mapperLocations‘ was not specified的3个解决方案_property 'mapperlocations' was not specified.-CSDN博客 但我按照 ......

virtualbox安装centOS7 报错 not syncing fatal exception

本文主要是介绍virtualbox安装centOS7 报错 not syncing fatal exception,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧! VirtualBox5.2 6.0 新建虚拟机CentOS7,启动时,出现 no syncing fatal ......
virtualbox exception centOS7 syncing centOS
共1230篇  :1/41页 首页上一页1下一页尾页