2015年8月25日火曜日

Macでpython3の環境構築2---python3本体のインストール---

前回「MacでPython3の環境構築1---Homebrewのインストール---」ではHomebrewをインストールしたので、次にpython3をインストールします。

とは言っても、Homebrewさえインストールしてしまえば、あとはコマンドを一回打つだけなのですが。

ターミナルを開いて、カーソルが点滅しているところに以下のように打ちます。

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

そうすると、以下のような処理が走りますので、完了するまで待つだけです。
  1. ==> Installing dependencies for python3: readline, sqlite, gdbm, openssl, xz
  2.  
  3. ==> Installing python3 dependency: readline
  4.  
  5. ==> Downloading https://homebrew.bintray.com/bottles/readline-6.3.8.yosemite.bottle.tar.gz
  6.  
  7. ######################################################################## 100.0%
  8.  
  9. ==> Pouring readline-6.3.8.yosemite.bottle.tar.gz
  10.  
  11. ==> Caveats
  12.  
  13. This formula is keg-only, which means it was not symlinked into /usr/local.
  14.  
  15.  
  16.  
  17. OS X provides the BSD libedit library, which shadows libreadline.
  18.  
  19. In order to prevent conflicts when programs look for libreadline we are
  20.  
  21. defaulting this GNU Readline installation to keg-only.
  22.  
  23.  
  24.  
  25.  
  26.  
  27. Generally there are no consequences of this for you. If you build your
  28.  
  29. own software and it requires this formula, you'll need to add to your
  30.  
  31. build variables:
  32.  
  33.  
  34.  
  35. LDFLAGS: -L/usr/local/opt/readline/lib
  36.  
  37. CPPFLAGS: -I/usr/local/opt/readline/include
  38.  
  39.  
  40.  
  41. ==> Summary
  42.  
  43. 🍺 /usr/local/Cellar/readline/6.3.8: 40 files, 2.1M
  44.  
  45. ==> Installing python3 dependency: sqlite
  46.  
  47. ==> Downloading https://homebrew.bintray.com/bottles/sqlite-3.8.11.1.yosemite.bottle.tar.gz
  48.  
  49. ######################################################################## 100.0%
  50.  
  51. ==> Pouring sqlite-3.8.11.1.yosemite.bottle.tar.gz
  52.  
  53. ==> Caveats
  54.  
  55. This formula is keg-only, which means it was not symlinked into /usr/local.
  56.  
  57.  
  58.  
  59. OS X provides an older sqlite3.
  60.  
  61.  
  62.  
  63. Generally there are no consequences of this for you. If you build your
  64.  
  65. own software and it requires this formula, you'll need to add to your
  66.  
  67. build variables:
  68.  
  69.  
  70.  
  71. LDFLAGS: -L/usr/local/opt/sqlite/lib
  72.  
  73. CPPFLAGS: -I/usr/local/opt/sqlite/include
  74.  
  75.  
  76.  
  77. ==> Summary
  78.  
  79. 🍺 /usr/local/Cellar/sqlite/3.8.11.1: 9 files, 2.8M
  80.  
  81. ==> Installing python3 dependency: gdbm
  82.  
  83. ==> Downloading https://homebrew.bintray.com/bottles/gdbm-1.11.yosemite.bottle.2.tar.gz
  84.  
  85. ######################################################################## 100.0%
  86.  
  87. ==> Pouring gdbm-1.11.yosemite.bottle.2.tar.gz
  88.  
  89. 🍺 /usr/local/Cellar/gdbm/1.11: 17 files, 532K
  90.  
  91. ==> Installing python3 dependency: openssl
  92.  
  93. ==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0.2d_1.yosemite.bottle.tar.gz
  94.  
  95. ######################################################################## 100.0%
  96.  
  97. ==> Pouring openssl-1.0.2d_1.yosemite.bottle.tar.gz
  98.  
  99. ==> Caveats
  100.  
  101. A CA file has been bootstrapped using certificates from the system
  102.  
  103. keychain. To add additional certificates, place .pem files in
  104.  
  105. /usr/local/etc/openssl/certs
  106.  
  107.  
  108.  
  109. and run
  110.  
  111. /usr/local/opt/openssl/bin/c_rehash
  112.  
  113.  
  114.  
  115. This formula is keg-only, which means it was not symlinked into /usr/local.
  116.  
  117.  
  118.  
  119. Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries
  120.  
  121.  
  122.  
  123. Generally there are no consequences of this for you. If you build your
  124.  
  125. own software and it requires this formula, you'll need to add to your
  126.  
  127. build variables:
  128.  
  129.  
  130.  
  131. LDFLAGS: -L/usr/local/opt/openssl/lib
  132.  
  133. CPPFLAGS: -I/usr/local/opt/openssl/include
  134.  
  135.  
  136.  
  137. ==> Summary
  138.  
  139. 🍺 /usr/local/Cellar/openssl/1.0.2d_1: 464 files, 18M
  140.  
  141. ==> Installing python3 dependency: xz
  142.  
  143. ==> Downloading https://homebrew.bintray.com/bottles/xz-5.2.1.yosemite.bottle.tar.gz
  144.  
  145. ######################################################################## 100.0%
  146.  
  147. ==> Pouring xz-5.2.1.yosemite.bottle.tar.gz
  148.  
  149. 🍺 /usr/local/Cellar/xz/5.2.1: 59 files, 1.7M
  150.  
  151. ==> Installing python3
  152.  
  153. ==> Downloading https://homebrew.bintray.com/bottles/python3-3.4.3_2.yosemite.bottle.1.tar.gz
  154.  
  155. ######################################################################## 100.0%
  156.  
  157. ==> Pouring python3-3.4.3_2.yosemite.bottle.1.tar.gz
  158.  
  159. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  160.  
  161. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  162.  
  163. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  164.  
  165. ==> Caveats
  166.  
  167. Pip and setuptools have been installed. To update them
  168.  
  169. pip3 install --upgrade pip setuptools
  170.  
  171.  
  172.  
  173. You can install Python packages with
  174.  
  175. pip3 install
  176. They will install into the site-package directory
  177. /usr/local/lib/python3.4/site-packages
  178. See: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md
  179. .app bundles were installed.
  180. Run `brew linkapps python3` to symlink these to /Applications.
  181. ==> Summary
  182. 🍺 /usr/local/Cellar/python3/3.4.3_2: 4696 files, 79M
  183. hiroshi-no-MacBook-Air:~ hiroshi$
  184.  


完了したら、念のため確認として、次のよう打つと、すでにインストールされているよ、とメッセージが出てきます。
  1. hiroshi-no-MacBook-Air:~ hiroshi$ brew install python3
  2. Warning: python3-3.4.3_2 already installed

以上で、とりあえずpython3本体のインストールは完了です。
例によって、また上で出てきた処理のプロセスの全文を最後にまとめておきます。

  1. hiroshi-no-MacBook-Air:~ hiroshi$ brew install python3
  2.  
  3. ==> Installing dependencies for python3: readline, sqlite, gdbm, openssl, xz
  4.  
  5. ==> Installing python3 dependency: readline
  6.  
  7. ==> Downloading https://homebrew.bintray.com/bottles/readline-6.3.8.yosemite.bottle.tar.gz
  8.  
  9. ######################################################################## 100.0%
  10.  
  11. ==> Pouring readline-6.3.8.yosemite.bottle.tar.gz
  12.  
  13. ==> Caveats
  14.  
  15. This formula is keg-only, which means it was not symlinked into /usr/local.
  16.  
  17.  
  18.  
  19. OS X provides the BSD libedit library, which shadows libreadline.
  20.  
  21. In order to prevent conflicts when programs look for libreadline we are
  22.  
  23. defaulting this GNU Readline installation to keg-only.
  24.  
  25.  
  26.  
  27.  
  28.  
  29. Generally there are no consequences of this for you. If you build your
  30.  
  31. own software and it requires this formula, you'll need to add to your
  32.  
  33. build variables:
  34.  
  35.  
  36.  
  37. LDFLAGS: -L/usr/local/opt/readline/lib
  38.  
  39. CPPFLAGS: -I/usr/local/opt/readline/include
  40.  
  41.  
  42.  
  43. ==> Summary
  44.  
  45. 🍺 /usr/local/Cellar/readline/6.3.8: 40 files, 2.1M
  46.  
  47. ==> Installing python3 dependency: sqlite
  48.  
  49. ==> Downloading https://homebrew.bintray.com/bottles/sqlite-3.8.11.1.yosemite.bottle.tar.gz
  50.  
  51. ######################################################################## 100.0%
  52.  
  53. ==> Pouring sqlite-3.8.11.1.yosemite.bottle.tar.gz
  54.  
  55. ==> Caveats
  56.  
  57. This formula is keg-only, which means it was not symlinked into /usr/local.
  58.  
  59.  
  60.  
  61. OS X provides an older sqlite3.
  62.  
  63.  
  64.  
  65. Generally there are no consequences of this for you. If you build your
  66.  
  67. own software and it requires this formula, you'll need to add to your
  68.  
  69. build variables:
  70.  
  71.  
  72.  
  73. LDFLAGS: -L/usr/local/opt/sqlite/lib
  74.  
  75. CPPFLAGS: -I/usr/local/opt/sqlite/include
  76.  
  77.  
  78.  
  79. ==> Summary
  80.  
  81. 🍺 /usr/local/Cellar/sqlite/3.8.11.1: 9 files, 2.8M
  82.  
  83. ==> Installing python3 dependency: gdbm
  84.  
  85. ==> Downloading https://homebrew.bintray.com/bottles/gdbm-1.11.yosemite.bottle.2.tar.gz
  86.  
  87. ######################################################################## 100.0%
  88.  
  89. ==> Pouring gdbm-1.11.yosemite.bottle.2.tar.gz
  90.  
  91. 🍺 /usr/local/Cellar/gdbm/1.11: 17 files, 532K
  92.  
  93. ==> Installing python3 dependency: openssl
  94.  
  95. ==> Downloading https://homebrew.bintray.com/bottles/openssl-1.0.2d_1.yosemite.bottle.tar.gz
  96.  
  97. ######################################################################## 100.0%
  98.  
  99. ==> Pouring openssl-1.0.2d_1.yosemite.bottle.tar.gz
  100.  
  101. ==> Caveats
  102.  
  103. A CA file has been bootstrapped using certificates from the system
  104.  
  105. keychain. To add additional certificates, place .pem files in
  106.  
  107. /usr/local/etc/openssl/certs
  108.  
  109.  
  110.  
  111. and run
  112.  
  113. /usr/local/opt/openssl/bin/c_rehash
  114.  
  115.  
  116.  
  117. This formula is keg-only, which means it was not symlinked into /usr/local.
  118.  
  119.  
  120.  
  121. Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries
  122.  
  123.  
  124.  
  125. Generally there are no consequences of this for you. If you build your
  126.  
  127. own software and it requires this formula, you'll need to add to your
  128.  
  129. build variables:
  130.  
  131.  
  132.  
  133. LDFLAGS: -L/usr/local/opt/openssl/lib
  134.  
  135. CPPFLAGS: -I/usr/local/opt/openssl/include
  136.  
  137.  
  138.  
  139. ==> Summary
  140.  
  141. 🍺 /usr/local/Cellar/openssl/1.0.2d_1: 464 files, 18M
  142.  
  143. ==> Installing python3 dependency: xz
  144.  
  145. ==> Downloading https://homebrew.bintray.com/bottles/xz-5.2.1.yosemite.bottle.tar.gz
  146.  
  147. ######################################################################## 100.0%
  148.  
  149. ==> Pouring xz-5.2.1.yosemite.bottle.tar.gz
  150.  
  151. 🍺 /usr/local/Cellar/xz/5.2.1: 59 files, 1.7M
  152.  
  153. ==> Installing python3
  154.  
  155. ==> Downloading https://homebrew.bintray.com/bottles/python3-3.4.3_2.yosemite.bottle.1.tar.gz
  156.  
  157. ######################################################################## 100.0%
  158.  
  159. ==> Pouring python3-3.4.3_2.yosemite.bottle.1.tar.gz
  160.  
  161. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  162.  
  163. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  164.  
  165. ==> /usr/local/Cellar/python3/3.4.3_2/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/us
  166.  
  167. ==> Caveats
  168.  
  169. Pip and setuptools have been installed. To update them
  170.  
  171. pip3 install --upgrade pip setuptools
  172.  
  173.  
  174.  
  175. You can install Python packages with
  176.  
  177. pip3 install
  178. They will install into the site-package directory
  179. /usr/local/lib/python3.4/site-packages
  180. See: https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md
  181. .app bundles were installed.
  182. Run `brew linkapps python3` to symlink these to /Applications.
  183. ==> Summary
  184. 🍺 /usr/local/Cellar/python3/3.4.3_2: 4696 files, 79M
  185. hiroshi-no-MacBook-Air:~ hiroshi$ brew install python3
  186. Warning: python3-3.4.3_2 already installed
  187.  

0 件のコメント:

コメントを投稿