1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacでVisualStudioCodeとPlantUMLを使うときに躓いたメモ

Posted at

前提条件

  • 実行環境
    • Mac OS Sierra (10.12.6)
    • VisualStudioCode 1.15.1
    • Java 1.8.0_77
    • Homebrew 1.1.9
  • Javaはすでに入っているものとします。
  • VisualStudioCodeもすでにインストールされているものとします。

PlantUMLプラグインのインストール

  • Command + Pから、コマンドを実行する
ext install plantuml
  • リストに表示された、PlantUML 2.1.3 をインストールする。

Graphvizのインストール

brew install graphviz

エラーになるようであれば、cask経由でインストールする

brew cask install graphviz

動作確認

  • VisualStudioCodeを起動し、新規ファイルを作成する。
    • 拡張子に指定はない。mdなどにも組み込める。
@startuml
testdot
@enduml

参考URL
http://www.graphviz.org
http://macappstore.org/graphviz/

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?