回答編集履歴

1

検証結果を追記

2017/06/22 04:12

投稿

can110
can110

スコア38262

test CHANGED
@@ -11,3 +11,79 @@
11
11
  以下に詳細な手順が載っています。
12
12
 
13
13
  [windows 32bit環境へのpython2.7インストール](http://qiita.com/maisuto/items/404e5803372a44419d60)
14
+
15
+
16
+
17
+ 追記:検証(8.1PROx64)
18
+
19
+
20
+
21
+ - [Windows x86 MSI installer](https://www.python.org/ftp/python/2.7.13/python-2.7.13.msi)を実行。
22
+
23
+ - インストール時、`Install for all users`および`[Add python.exe to Path]`は`[Will be installed on local hard drive]`を選択。
24
+
25
+
26
+
27
+ インストール後
28
+
29
+ ```BAT
30
+
31
+ C:\Users\hoge>python
32
+
33
+ Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (
34
+
35
+ Intel)] on win32
36
+
37
+ Type "help", "copyright", "credits" or "license" for more information.
38
+
39
+ >>> exit()
40
+
41
+
42
+
43
+ C:\Users\hoge>pip -V
44
+
45
+ pip 9.0.1 from c:\python27\lib\site-packages (python 2.7)
46
+
47
+
48
+
49
+ C:\Users\hoge>echo %PATH%
50
+
51
+ C:\Python27\;C:\Python27\Scripts;C:\Windows\system32;C:\Windows;C:\Windows\Syste
52
+
53
+ m32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\
54
+
55
+
56
+
57
+ C:\Users\hoge>dir c:\Python27\Scripts
58
+
59
+ ドライブ C のボリューム ラベルがありません。
60
+
61
+ ボリューム シリアル番号は xxxx です
62
+
63
+
64
+
65
+ c:\Python27\Scripts のディレクトリ
66
+
67
+
68
+
69
+ 2017/06/22 12:02 <DIR> .
70
+
71
+ 2017/06/22 12:02 <DIR> ..
72
+
73
+ 2017/06/22 12:01 89,449 easy_install-2.7.exe
74
+
75
+ 2017/06/22 12:01 89,449 easy_install.exe
76
+
77
+ 2017/06/22 12:02 89,421 pip.exe
78
+
79
+ 2017/06/22 12:02 89,421 pip2.7.exe
80
+
81
+ 2017/06/22 12:02 89,421 pip2.exe
82
+
83
+ 5 個のファイル 447,161 バイト
84
+
85
+ ```
86
+
87
+
88
+
89
+