Sreekumar R
Sreekumar R

Reputation: 599

Org-mode Plant UML issue

I am using PlantUML inside my org file to generate UML diagrams. When I try to create generalization relationship by

#+begin_src plantuml :file generalization-plantuml.png :exports none
Elective ^-- Subject
#+end_src

I getting error as

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

Any clue, where I am doing wrong.

I also tried

Elective <|-- Subject

but, it also giving the same error.

Upvotes: 0

Views: 973

Answers (1)

Johnson Liu
Johnson Liu

Reputation: 26

If you mean to export class diagram, Graphviz is a must for plantuml.jar.

You can refer to plantuml official site

Upvotes: 1

Related Questions