0
0

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 3 years have passed since last update.

Python3でbasemapをインストールする際に出力されるエラーへの対処

Posted at

basemapのインストール

地理データなどを表示するために役立つbasemapはここからダウンロードできる。
しかし、basemapを使用する際に必要なlibgeosをビルドする際に問題が起きる。

basemapのリポジトリのREADEME.mdのインストール方法は、以下のように掲示されている。

cd geos-3.3.3
./configure --prefix=$GEOS_DIR 
make; make install

2行目まではパスするが、3行目でマクロに関するエラーが出力される。
このエラーには、環境変数のCXXにコンパイラの情報を設定することで解決できる。

export CXX="g++ -std=c++98"

matplotlibの呼び出し

再度インストールを実行しようすると,今度はmatplotlib関連のエラーが出力される。
このエラーには、以下のコマンドを入力することで対処できる.

pip install --user git+https://github.com/matplotlib/basemap.git
参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?