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

Mac購入からPython環境を整える

Last updated at Posted at 2019-10-01

概要

Pythonの開発環境を整える。

環境

MacOS Mojava 10.14.5
git 2.23.0

手順

  1. pyenvのインストール
  2. anacondaのインストール
  3. anacondaの仮想環境を構築

pyenvのインストール

公式を参照した。

$ git clone https://github.com/pyenv/pyenv.git ~/.pyenv
  • パスの設定
$ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
  • pyenvのおまじない
$ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n  eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
  • シェルの再起動
$ exec "$SHELL"

anacondaのインストール

$ pyenv install anaconda3-5.3.0
$ pyenv global anaconda3-5.3.0
  • .bashrcにanacondaの設定を付け足す。
#for anaconda3-5.3.0
. ~/.pyenv/versions/anaconda3-5.3.0/etc/profile.d/conda.sh

anacondaの仮想環境を構築

$ conda create -n temp python=3.7 numpy matplotlib pandas jupyter
  • activate
$ conda activate temp
  • pythonのバージョン確認
(temp)$ python -V
python 3.7.4

最後に

これで最低限の環境は整ったと思います。あとはJupyterの環境も整えて万全ですね。

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