6
3

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.

Dockerにgraphvizを入れる方法

Last updated at Posted at 2019-10-21

対象

この記事はオライリー・ジャパン「Pythonではじめる機械学習」2.3.5 決定木でエラーが出た人向けです。

環境

  • Ubuntu 18.04LTS
  • Dockerで仮想環境
  • Python 3.6
  • Jupyter notebook

状況

In[55]
melearn.plots.plot_animal_tree()
を実行したらエラーが出た

対処

graphvizがインストールできてないかも

apt-getコマンドでパッケージ本体をインストールする

apt-get update
apt-get install graphviz

pipコマンドを使いpython用のラッパーをインストールする

pip install graphviz

ハマったポイント

  • pip install graphvizだけでいいかと思ってたらだめだった
  • apt-get install graphvizをしたら先にupdateしろ、と言われた

参考

6
3
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
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?