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.

Python 3.6 環境に Chainer をインストールする

1
Posted at

Anacondaをインストール

https://www.anaconda.com/download/
上記からAnacondaディストリビューションをダウンロード(現在はPython3.7が入る模様)

Anaconda promptを起動する

Anaconda promptを起動する

Chainer のインストール

pip install chainer --user
でインストールする。SuccessすればOK。

(備考)
--userの有無によってchainerがインストールされる場所が異なる。
(--userなし)

c:\users\xxxxx\anaconda3\lib\site-packages\chainer*

(--userあり)

c:\users\xxxxx\appdata\roaming\python\python36\site-packages\chainer*

No module named 'chainer'が出なくなる!

--user つきの pip install をすれば上記エラーが出なくなる。
chainerを使って機械学習を試しましょう。

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?