5
4

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.

anaconda環境へのGDALのインストールでハマった時のメモ

Last updated at Posted at 2018-06-21

この記事について

シェープファイルをpythonで扱う必要があり、手元のanaconda環境にGDALを入れる際にdependency周りでハマり、その後なんとか解決したので、その際のメモ。

GDAL

gdalを入れるとき、たまたまググって上位に引っかかった記事を見ると、

brew install gdal
pip install GDAL={インストールしたgdalのversion}
pip install pyshp

で大丈夫らしいけど、anaconda環境ではそれは再現しない(2018年6月現在、brewでインストールされるgdalとpipでインストールされるgdalに互換性がなく、いろいろdependency問題が起こる)。
のでさらに、

conda install libtiff
conda install libcurl
conda install krb5

を実行して、dependencyを解消してあげる必要がある。
( python -c "import gdal" をコマンドラインで実行してみると、どのパッケージに問題が起こっているかわかる。なので、エラーを起こしているパッケージを順番通りインストールしていく形)。

5
4
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
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?