草庐IT

报错:The following signatures couldn‘t be verified because the public key is not available: NO_PUBKEY

aptupdate最后报错$sudoaptupdate报错......91packagescanbeupgraded.Run'aptlist--upgradable'toseethem.W:Anerroroccurredduringthesignatureverification.Therepositoryisnotupdatedandthepreviousindexfileswillbeused.GPGerror:http://repo.mysql.com/apt/ubuntufocalInRelease:Thefollowingsignaturescouldn'tbeverifiedbec

【已解决】wflow启动报错Access to process.binding(‘http_parser‘) is deprecated----node版本不匹配

文档地址:一定要看文档检查自己的node版本,版本太高会报这个错误。**注意:作者的开发环境是node14.18.0、vuecli4.1.1、edge浏览器node14.xx下载地址:点击跳转nodejs版本库当我切换到低版本之后,问题确实解决了INFOStartingdevelopmentserver...10%building2/2modules0active(node:5212)[DEP0111]DeprecationWarning:Accesstoprocess.binding('http_parser')isdeprecated.(Use`node--trace-deprecatio

【Android】The ‘kotlin-android-extensions‘ Gradle plugin is deprecated

The‘kotlin-android-extensions’Gradlepluginisdeprecated最近跑编译的时候,经常有个警告The'kotlin-android-extensions'Gradlepluginisdeprecated.Pleaseusethismigrationguide(https://goo.gle/kotlin-android-extensions-deprecation)tostartworkingwithViewBinding(https://developer.android.com/topic/libraries/view-binding)andth

Ant Design 使用出现 Error: Can‘t resolve ‘~antd/dist/antd.css‘

在运行Recat-AntDesign项目安装依赖时发现控制台报错发现是css引入文件路径有问题,沿着这个路径找发先引入文件已经改名了去文档官网看了一下在5.2.2版本中的引入文件名确实已经改变了其实就是版本升级问题改变文件名,项目就成功启动了而且在这里个版本中的AntDesign的样式文件好像不需要引入也可以直接生效

在提交文件到gitee远程仓库时报用户名密码错误 fatal: Authentication failed for ‘https://gitee.com/xxx/xxx.git 解决方案来啦 亲测有效

在提交文件到gitee远程仓库时,突然出现一个弹框输入用户名密码很懵逼输入了结果是错误的D:\文件名>gitpush-uorigin"master"remote:[session-fa417d86]Akiko:Incorrectusernameorpassword(accesstoken)fatal:Authenticationfailedfor'https://gitee.com/xxx/文件名.git/'   此刻如果再提交一遍还是会报错连再输入一次的机会都不给我们需要在控制面板>用户账户>凭据管理器>Windows凭证>普通凭证删除刚才进行的输入 删完就可以再次进行提交重新输入用户名密码

[phpMyAdmin]ERROR 1396 (HY000): Operation ALTER USER failed for ‘root‘@‘localhost‘解决

问题:ERROR1396(HY000):OperationALTERUSERfailedfor‘root‘@‘localhost‘1.查看mysql数据库中user表用户root的plugin字段是否为mysql_native_password2.如不存在root用户则新增进入mysql数据库,修改密码的时候ALTERUSER'root'@'localhost'IDENTIFIEDWITHmysql_native_passwordBY'xxxx';报出如下错误ERROR1396(HY000):OperationALTERUSERfailedfor'root'@'localhost'我们可可以查

[Vue warn]: Error in render: “TypeError: Cannot read properties of undefined (reading ‘matched‘)“

描述:vue中在路由那里你可能经常遇到[Vuewarn]:Errorinrender:"TypeError:Cannotreadpropertiesofundefined(reading'matched')"的报错,导致页面无法显示的问题。如图: 解决:出现这种情况,你应该首先查看路由的引入是否正确!!在vue里面使用路由有一个比较需要注意的地方,就是要使用router来注册,连Router都不行,严格使用router。importrouterfrom'./router'//引入的时候可以不设置router,注册使用的时候必须是router

MySQL msi安装缺少‘Microsoft Visual Studio 2019 Redistributable’

问题下载好msi文件运行报错,提示未安装‘MicrosoftVisualStudio2019Redistributable’解决方法:点击这里点击最底部:OtherToolsandFrameworks一栏,下载MicrosoftVisualC++RedistributableforVisualStudio2019并安装,重启电脑后再运行MySQL安装程序即可。

解决You‘ve successfully authenticated, but GitHub does not provide shell access.

解决You'vesuccessfullyauthenticated,butGitHubdoesnotprovideshellaccess.问题原因&解决后续问题在gitpush的时候提示输入账号密码。但我在另一个项目配置过ssh免密的。并且现在git也不允许http连接,所以提供账号密码也没办法push。$gitpush-uoriginmainUsernamefor'https://github.com':xx@qq.comxxPasswordfor'https://xx@qq.com@github.com':remote:Supportforpasswordauthenticationwas

module ‘lib‘ has no attribute ‘OpenSSL_add_all_algorithms‘

module‘lib’hasnoattribute'OpenSSL_add_all_algorithms’出现这个问题是因为你说安装的cryptography库与你现在的使用的环境不兼容导致的,可能是因为cryptography的版本太高,需要进行降级pipinstallcryptography==38.0.4如果无法安装看看代理是否是开着的,或者是pip版本的问题。如果是pip版本的问题就需要升级一下python-mpipinstall-U--force-reinstallpip执行完之后在执行上边的代码试试,多试几次就好了。如果实在是装不上去,那就先把之前cryptography库卸载了之