美文网首页
Ubuntu22.10安装webstorm

Ubuntu22.10安装webstorm

作者: 啃香菜的花萝萝 | 来源:发表于2023-11-29 10:44 被阅读0次

1. 去WebStorm官网下载

WebStorm-2023.2.5.tar.gz

2. 解压webstorm到安装目录

tar -zxvf WebStorm-2023.2.5.tar.gz -C /xx/webstorm

3. 运行

到bin目录下./webstorm.sh即可

4. 创建桌面图标

Desktop Entry 文件是Linux桌面系统中用于描述程序启动配置信息的文件。系统范围的Desktop Entry文件地址统一在 /usr/share/applications下,文件以.desktop为后缀名。
sudo vi /usr/share/applications/jetbrains-webstorm.desktop
文件内容如下:

[Desktop Entry]
Version=1.0
Type=Application
Name=WebStorm
Icon=/home/lizhou/Tools/WebStorm-232.10227.9/bin/webstorm.svg
Exec="/home/lizhou/Tools/WebStorm-232.10227.9/bin/webstorm.sh" %f
Comment=The smartest JavaScript IDE
Categories=Development;IDE;
Terminal=false  # 设置软件启动是否打开终端 
StartupWMClass=jetbrains-webstorm   # 窗口与应用程序的关联属性
StartupNotify=true   # 设置软件启动是否通知

相关文章

网友评论

      本文标题:Ubuntu22.10安装webstorm

      本文链接:https://www.haomeiwen.com/subject/yitfgdtx.html