从命令行安装插件 最后修改时间:2023 年 8 月 23 日
通过JetBrains Marketplace 或自定义插件存储库 中的插件 ID 安装插件。
笔记 在运行此命令之前退出 IntelliJ IDEA!
安装插件意味着将它们放在plugins目录 中。如果您在全新的 IntelliJ IDEA 安装上运行此命令,IDE 将不会建议您在首次启动时导入之前安装的设置,因为这些设置将不再为空。
您可以在安装目录的bin 下找到用于运行 IntelliJ IDEA 的可执行文件。要使用此可执行文件作为命令行启动程序,请PATH
按照命令行界面 中所述将其添加到您的系统中。
句法 idea64 . exe installPlugins <plugin-id ...> [repository-url ...]
例子 安装Grazie Lite 插件 :
>
idea64.exe installPlugins tanvd.grazi
com.example.myplugin
使用自定义存储库中的ID 安装插件http://plugins.example.com:8080/updatePlugins.xml
:
>
idea64.exe installPlugins com.example.myplugin http://plugins.example.com:8080/updatePlugins.xml
默认情况下,IntelliJ IDEA 不提供命令行启动器。有关为 IntelliJ IDEA 创建启动器脚本的更多信息,请参阅命令行界面 。
句法 idea installPlugins <plugin-id ...> [repository-url ...]
例子 安装Grazie Lite 插件 :
$
idea installPlugins tanvd.grazi
com.example.myplugin
使用自定义存储库中的ID 安装插件http://plugins.example.com:8080/updatePlugins.xml
:
$
idea installPlugins com.example.myplugin http://plugins.example.com:8080/updatePlugins.xml
You can find the script for running IntelliJ IDEA in the installation directory under bin . To use this script as the command-line launcher, add it to your system PATH
as described in Command-line interface .
Syntax idea . sh installPlugins <plugin-id ...> [repository-url ...]
Examples Install the Grazie Lite plugin :
$
idea.sh installPlugins tanvd.grazi
Install a plugin with the ID com.example.myplugin
from a custom repository http://plugins.example.com:8080/updatePlugins.xml
:
$
idea.sh installPlugins com.example.myplugin http://plugins.example.com:8080/updatePlugins.xml
插件开发者在plugin.xml (插件配置文件) 中指定插件的唯一标识符。如果是公共插件,您可以在 JetBrains Marketplace 的插件页面找到其 ID。在“版本” 选项卡上,单击相关版本以查看插件 ID 和其他详细信息。