首页 > 其他分享 >解决IDEA安装/卸载插件后启动报错问题

解决IDEA安装/卸载插件后启动报错问题

时间:2023-07-19 18:45:02浏览次数:32  
标签:插件 IDEA ActivatePowerModeApplicationPlugin 报错 卸载 com

一. IDEA新安装并且卸载了一些插件,重启IDEA的时候报错Internal error. Please refer to https://jb.gg/ide/critical-startup-errors
二. 关键信息错误为以下这些:
1. com.intellij.diagnostic.PluginException: Fatal error initializing 'com.jiyuanime.ActivatePowerModeApplicationPlugin' 
[Plugin: com.jiyuanime.ActivatePowerModeApplicationPlugin]
2. Caused by: java.lang.ClassNotFoundException: com.jiyuanime.ActivatePowerModeApplicationPlugin

image

三. 通过查看错误可以看出是在IDEA启动时候会去加载插件ActivatePowerModeApplicationPlugin,但是却没有找到对应插件的代码类,结合上面我卸载了插件可能没有卸载干净,所以我们需要找到IDEA插件的安装位置C:\Users\Administrator\AppData\Roaming\JetBrains\IntelliJIdea20xx.x\plugins(需要开启显示隐藏文件夹),然后找到报错的插件,将其删除掉,最后我们再重启IDEA就可以正常打开了!

image

标签:插件,IDEA,ActivatePowerModeApplicationPlugin,报错,卸载,com
From: https://www.cnblogs.com/xiqingbo/p/environment-02.html

相关文章

  • vue项目安装lees-loader报错:Module build failed: Error: Cannot find module 'less'
    1-新搭建的一个项目,运行时报Modulebuildfailed:Error:Cannotfindmodule'less'错误原因:vue文件里面的style添加了 lang="less" 解决方案:安装less  npminstallless2-安装less后运行报错:Modulebuildfailed:TypeError:this.getOptionsisnotafunc......
  • PlayWright(二十一)- Pytest插件报告
    1.下载pytest框架有官方的报告pipinstallpytest-html 下载成功,那我们怎么使用呢? 2.使用可以直接在配置文件里使用 在pytest配置文件中,增加命令选项选项:--html=./报告路径/报告⽂件名.html说明:--self-contained-html将CSS⽂件内嵌到报告⽂件中  ......
  • 更新旧版本的 Deno 报错解决 error: You do not have write permission to /opt/homeb
    更新旧版本的Deno报错解决error:Youdonothavewritepermissionto/opt/homebrew/bin/deno参考1:https://www.denojs.cn/manual/getting_started/installation参考1:https://deno.land/[email protected]如需更新旧版本的Deno,你可以运行:denoupgrade此操作会从github.com/d......
  • centos系统中python3 import tkinter报错解决方法
    本人运行的环境是Centos7.9+Python3.6,运行脚本中包含importtkinter。报错如下图: 原因是Linux环境下Python环境没有内置tkinter模块(在windows环境是内置好的,可以直接用)解决方法为手动安装tkinter模块1yuminstallpython3-tkinter安装完成后,再运行tkinter代码就成功了。......
  • Android编译报错Caused by: java.lang.RuntimeException: Manifest merger failed wit
    Android编译报错Causedby:java.lang.RuntimeException:Manifestmergerfailedwithmultiple这种异常一般是引用了aar,如果项目中的manifestapplication配置和aar中不一样就会报错,比如android:icon和aar中不一致,则添加tools:replace="android:icon"配置即可。......
  • IC卡读卡器web插件中使用js异步await/async调用接口
    js中使用异步await/async方式,对于程序的结构和逻辑都有非常大的好处,对于异步await/async有如下描述:async表示这是一个async函数,await只能用在async函数里面,不能单独使用.async返回的是一个Promise对象,await就是等待这个promise的返回结果后,再继续执行.await等待的是一个Pro......
  • Linux系统Apache添加监听端口后无法启动服务并报错:Job for httpd.service failed beca
    导言:这是SELinux安全机制导致的。解决方法:1.查看当前httpd端口#semanageport-l|grephttp2.将对应端口加入SELinux,以8068为例#semanageport-a-thttp_port_t-ptcp80683.再次查看#semanageport-l|grephttp4.重启Apache服务#systemctlrestarth......
  • uniapp专栏 —— vscode报错 'uni' is not defined.
    写在前面这些内容基于通过cli搭建的uniapp项目,使用了vite4,ts4.9,vue3(组合式API,setup语法糖)。如果有版本不一致,请谨慎参考。正文uni是一个全局变量,但是eslint没有识别到。避免这个错误报错在.eslintrc.js文件中加上配置globals:{uni:true},......
  • 容器环境下访问服务出现 Address not available 报错
    1、现象:访问服务时出现如下报错2、原因:通过netstat-an查看到连接svc的地址,其中estab状态的连接数,已经到达了可用的随机端口数量阈值,无法在新建连接了   执行命令查看:netstat-tan|grepESTABLISHED|wc-l   sysctl-a|grepnet.ipv4.ip_local_port_range3......
  • docker compose报错environment array items[0,4] must be unique
    DockerCompose报错:environmentarrayitems[0,4]mustbeunique在使用DockerCompose进行容器编排时,有时候会遇到以下错误提示:environmentarrayitems[0,4]mustbeunique。这个错误发生在定义了重复的环境变量时,本文将详细解释这个错误的原因,并提供解决方案。DockerCompose......