2022-06-01から1日間の記事一覧

M1 macのpython3(arm64)にrasterioとpyprojをインストール

$ python3 -m pip install git+https://github.com/pyproj4/pyproj.git $ python3 -m pip install git+https://github.com/rasterio/rasterio.git

M1 macでのPython3関連のコマンド

pipやpip3ではなく、python3 -m pip install〜などと入力する。 jupyter labではなく、python3 -m jupyterlab で起動する。

HomebrewでインストールしたPythonをPyenvに追加する

M1 MacのHomebrewでarm64アーキテクチャのPython3.9.13をインストールした。 以下を参考にpyenvに登録した。 thecesrom.dev

M1 MacにPython gdalモジュールをインストール

Intel Macでは簡単だったがM1 Macで詰まった 1. Homebrewでgdalをインストール(arm64アーキテクチャ) $ brew install gdal自分の場合は /opt/homebrew/Cellar/gdal/3.5.0/ にインストールされた。 アーキテクチャを調べるとarm64であることが確認できた。 …

Tour of Rust

tourofrust.com