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

DeepLearning勉強用メモ

Last updated at Posted at 2018-03-18

自分用のメモ.あまり参考にはなさらぬよう...

何を勉強するか

これを勉強しようとしている
https://www.oreilly.co.jp/books/9784873117584/

環境構築

概要

homebrew環境下にpyenvを導入し,python3.xを導入.

Python3.X on MacOS

pyenv, python3.6.4のインストール

$ brew install pyenv

パス・環境変数の設定

$ echo 'export PYENV_ROOT="${HOME}/.pyenv"' >> ~/.bash_profile
$ echo 'export PATH="${PYENV_ROOT}/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(pyenv init -)"' >> ~/.bash_profile

標準でpython3.Xが動作するように設定.

$ pyenv install 3.6.4
$ pyenv global 3.6.4

ライブラリのインストール

Numpyのインストール

$ pip install numpy

すると,下記メッセージが出力された.

You are using pip version 9.0.1, however version 9.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

ので,思考停止して下記を実行

$ pip install --upgrade pip

pipのバージョンが古かったようだ.

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?