2015年8月25日火曜日

Macでpython3の環境構築3---ライブラリのインストール---

今回の投稿はそれほど手順は多くないのですが、この次の記事がいろいろ複雑なので、忘れないうちに、さっさとこの記事は作ってしまおう。

前回、前々回でHomebrewをイントールしpython3をインストールしました

そこまでできてしまえば、今回はすぐ終わります。

今回はNumpyとNetworkxとscikit-learnのインストール方法を紹介します。

Numpyのインストール

順不同ですが、まずはNumpyから。

ターミナルを開き、カーソルが点滅しているところに次のようなコマンドを打つだけです。

  1. hiroshi-no-MacBook-Air:~ hiroshi$ pip3 install numpy # 「pip3 install numpy」というコマンドを打ち、returnを押す。

そうすると、以下のような処理が始まります。
  1. You are using pip version 7.1.0, however version 7.1.1 is available.
  2.  
  3. You should consider upgrading via the 'pip install --upgrade pip' command.
  4.  
  5. Collecting numpy
  6.  
  7. Downloading numpy-1.9.2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (3.7MB)
  8.  
  9. 100% |████████████████████████████████| 3.7MB 91kB/s
  10.  
  11. Installing collected packages: numpy
  12.  
  13. Successfully installed numpy-1.9.2
  14.  
  15. hiroshi-no-MacBook-Air:~ hiroshi$

  1. Successfully installed numpy-1.9.2
  2.  

と出ているので、無事インストール完了です。

Networkxのインストール

同様に、

  1. hiroshi-no-MacBook-Air:~ hiroshi$ pip3 install networkx # 「pip3 install networkx」というコマンドを打ち、returnを押す。

と打つと、
  1. You are using pip version 7.1.0, however version 7.1.1 is available.
  2.  
  3. You should consider upgrading via the 'pip install --upgrade pip' command.
  4.  
  5. Collecting networkx
  6.  
  7. Downloading networkx-1.10.tar.gz (1.2MB)
  8.  
  9. 100% |████████████████████████████████| 1.2MB 316kB/s
  10.  
  11. Collecting decorator>=3.4.0 (from networkx)
  12.  
  13. Downloading decorator-4.0.2-py2.py3-none-any.whl
  14.  
  15. Building wheels for collected packages: networkx
  16.  
  17. Running setup.py bdist_wheel for networkx
  18.  
  19. Stored in directory: /Users/hiroshi/Library/Caches/pip/wheels/5d/de/da/01c04502599d67f0b7830214036cd909f211240dbeb23a796c
  20.  
  21. Successfully built networkx
  22.  
  23. Installing collected packages: decorator, networkx
  24.  
  25. Successfully installed decorator-4.0.2 networkx-1.10
  26.  
  27. hiroshi-no-MacBook-Air:~ hiroshi$
  28.  
  29.  

となります。

scikit-learnのインストール

また同様に、
  1. hiroshi-no-MacBook-Air:~ hiroshi$ pip3 install scikit-learn # 「pip3 install scikit-learn」というコマンドを打ち、returnを押す。

とすれば、
  1. You are using pip version 7.1.0, however version 7.1.1 is available.
  2.  
  3. You should consider upgrading via the 'pip install --upgrade pip' command.
  4.  
  5. Collecting scikit-learn
  6.  
  7. Downloading scikit_learn-0.16.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (5.1MB)
  8.  
  9. 100% |████████████████████████████████| 5.1MB 82kB/s
  10.  
  11. Installing collected packages: scikit-learn
  12.  
  13. Successfully installed scikit-learn-0.16.1
  14.  
  15. hiroshi-no-MacBook-Air:~ hiroshi$
  16.  

となります。


0 件のコメント:

コメントを投稿