1
1

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.

Rosettaも使う人のM1 Macの環境整備Step2 (ObsPyのインストール)

Last updated at Posted at 2021-05-27

はじめに

M1 MacにObsPyをインストールする手順です。
最初にやった環境整備についてはこちらを読んでください。

参考にしたサイト:
https://zenn.dev/osuzuki/articles/380be0f682d72d
https://oku.edu.mie-u.ac.jp/~okumura/macosx/m1.html

##ObsPyのインストール
minicondaを使ってObsPyの仮想環境を構築します。

conda create -n obspy python=3.8

pythonを3.8にしたのは3.9だとjupyter notebookがうまく起動できなかったためです。

仮想環境をつくるとターミナルのプロンプトのところに(base)とでるようになるので、

conda config --set auto_activate_base false

 とタイプすると次に起動する時から表示されなくなります。

condaの環境が動いている時はまず

conda deactivate

で今起動している環境を停止します。

改めて

conda activate obspy

で先ほど作った環境を起動します。

ObsPyをインストールします。

conda install -c conda-forge obspy

numpy, matplotlibはanacondaをインストールした時に一緒に付いてくるみたいです(多分)。

必要に応じてその他モジュールをインストールします。

conda install jupyter
conda install pandas

Step3ではTensorflow, kerasをインストールします。<--まだリンクつながっていないです。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?