3
4

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.

Windows10 64bit環境でPythonとpipを使えるようにする

Last updated at Posted at 2017-10-07

Windows10 64bit機にAnacondaでPythonを入れる。

Anacondaの公式ページからWidows 64bit版のインストーラを使ってPython、Numpy、Scipy、Pandas、iPython、Spyder、Jupyterなどデータ分析で必要なパッケージを一括でインストール。今までAnaconda以外の方法でやろうとしてとても躓きが多かったけど、Windows10にAnacondaでPythonを設定する方法はノンプログラマの自分にも簡単に出来ました。

#Windows PowerShell上でpipを使えるようにする。
「設定」から「環境変数を編集」を検索。ユーザー環境変数の「Path」を選択・編集し、次の二つのPathを追加する。(ユーザー名の所だけ各環境に合わせて書き換えてください。ここではhrst)

  • まずPythonやiPythonなどのコマンドを使えるようにするために次のPathを追加。

C:\Users\hrst\AppData\Local\Continuum\Anaconda3

  • その後pipを使えるようにするために次のPathを追加。

C:\Users\hrst\AppData\Local\Continuum\Anaconda3\Scripts

以上の二つのPathを追加すればコマンドプロンプトやPowerShell上でPython系のコマンドが使えるようになります。

3
4
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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?