我在我的组织文件中使用PlantUML来生成UML图。当我试图创建generalization关系时
#+begin_src plantuml :file generalization-plantuml.png :exports none
Elective ^-- Subject
#+end_src我犯了错误
Dot executable: /opt/local/bin/dot
File does not exist.
Cannot find Graphiz. You should try
@startuml
testdot
@enduml
or
java -jar plantuml.jar -testdot任何线索,我在哪里做错了。
我也试过
Elective <|-- Subject但是,它也给出了同样的错误。
发布于 2021-04-08 09:25:04
如果要导出类图,则plantuml.jar必须使用Graphviz。
您可以参考植物官方网站
https://stackoverflow.com/questions/66997927
复制相似问题