英文:
Uninstall IntelliJ from linux terminal
问题
我以前在 Chromebook 上进行编码(很快就发现这是一个糟糕的主意),然后我升级了我的笔记本电脑。我成功地卸载了我使用的 Python IDE(Spyder3),使用以下命令在终端中:
sudo apt-get --purge remove spyder3
我也用同样的方法卸载了剩余的 Python 文件。然而,我无法找出同样的方法来卸载 Intellij。我尝试使用 dpkg --list
命令找到正确的文件,但我在使用终端方面经验非常有限。一个同学帮我下载了最初的软件,所以那时候甚至不是我自己操作的。有关如何找到正确的方法来卸载 Intellij,有什么建议吗?供参考,我使用的是 IntelliJIdea2019.3。
英文:
I used to do my coding on a Chromebook (which I very quickly found was a horrible idea) before I upgraded my laptop. I successfully uninstalled the python IDE I was using (Spyder3) using
sudo apt-get --purge remove spyder3
in my terminal. I did the same thing to uninstall any remaining python files. However, I cannot figure out the correct way to do the same thing for Intellij. I have tried using dpkg --list
to find the right file but I am seriously inexperienced in using the terminal. A classmate helped me with my original downloads, so I didn't even do those myself. Is there any advice out there on how I can figure out the right way to remove this? For reference I used IntelliJIdea2019.3.
答案1
得分: 0
有许多方法可以向Linux添加新功能。
卸载过程取决于您在计算机上安装IntelliJ IDEA的方式。
-
如果您是通过snap安装的:使用
snap remove <package>
来移除snap软件包。 -
如果是通过从存档中提取文件手动安装在 /opt/idea 或其他目录下的,只需使用
rm
命令删除/opt/idea
文件夹。
这可能会有所帮助:https://www.jetbrains.com/help/idea/uninstall.html
英文:
There are many ways of adding new functionalities to linux.
The unistall procedure depends on how you installed IntelliJ IDEA on your computer.
-
If you installed it with snap : use
snap remove <package>
to remove the snap package. -
If it was installed manually by extracting the files from an archive to the /opt/idea , or any other directory, just remove the
/opt/idea
folder with therm
command.
This might help : https://www.jetbrains.com/help/idea/uninstall.html
专注分享java语言的经验与见解,让所有开发者获益!
评论