15
7

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.

graphvizをインストールできない時の解決法

Posted at

##エラー
graphvizをapt-get経由でインストールできない。

ターミナル
$ apt-get install graphviz

Package graphviz is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'graphviz' has no installation candidate

##解決策
以下のコマンドを順番に叩いたらいけた。

ターミナル
$ apt-get dist-upgrade
$ apt-get update
$ apt-get install build-essential
$ apt-get install graphviz

参考サイト

15
7
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
15
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?