Idea PlantUml 安装

1、安装PlantUml

a)、Idea:File->settings->Plugins->Browse reprepositories,在Browse reprepositories中搜索PlantUml integration,选择并安装install。

b)、重新启动idea。

Idea PlantUml 安装

 

2、安装graphviz

a)、下载地址:https://graphviz.gitlab.io/_pages/Download/Download_windows.html

b)、下载文件【graphviz-2.38.msi】、【graphviz-2.38.zip

        graphviz-2.38.msi可直接默认安装;graphviz-2.38.zip解压后配置环境变量即可。

c)、graphviz-2.38.zip 环境变量配置。

        解压目录:E:\Program Files (x86)\graphviz-2.38;解压后可将release目录删除。

        环境变量配置:

                用户变量:GRAPHVIZ_INSTALL_DIR  <> E:\Program Files (x86)\graphviz-2.38

                系统变量:GRAPHVIZ_DOT <> E:\Program Files (x86)\graphviz-2.38\bin\dot.exe
                                  Path 追加 E:\Program Files (x86)\graphviz-2.38\bin

d)、验证:cmd命令行中输入:dot -verison

Idea PlantUml 安装