質問編集履歴

3

追記

2020/07/12 10:00

投稿

skysoul
skysoul

スコア111

test CHANGED
File without changes
test CHANGED
@@ -63,3 +63,25 @@
63
63
  ```
64
64
 
65
65
  と出ます
66
+
67
+
68
+
69
+ 追記
70
+
71
+
72
+
73
+ `py -m pip install --upgrade pip`
74
+
75
+ して、
76
+
77
+ `py -m pip install pyinstaller`
78
+
79
+ してから(ここまではうまくいった)、
80
+
81
+ `pyinstaller ○○〇 [--onefile] [--noconsole]`
82
+
83
+ をうったら
84
+
85
+ `'pyinstaller' は、内部コマンドまたは外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されていません。`
86
+
87
+ と出ました。

2

追記

2020/07/12 10:00

投稿

skysoul
skysoul

スコア111

test CHANGED
File without changes
test CHANGED
@@ -37,3 +37,29 @@
37
37
  `windouws10home`
38
38
 
39
39
  です。
40
+
41
+
42
+
43
+ 追記
44
+
45
+ py -m pip install xxxx
46
+
47
+ でpipをインストールすると、
48
+
49
+
50
+
51
+ ```
52
+
53
+ Collecting xxxx
54
+
55
+ ERROR: Could not find a version that satisfies the requirement xxxx (from versions: none)
56
+
57
+ ERROR: No matching distribution found for xxxx
58
+
59
+ WARNING: You are using pip version 19.2.3, however version 20.1.1 is available.
60
+
61
+ You should consider upgrading via the 'python -m pip install --upgrade pip' command.
62
+
63
+ ```
64
+
65
+ と出ます

1

追記

2020/07/11 08:58

投稿

skysoul
skysoul

スコア111

test CHANGED
File without changes
test CHANGED
@@ -19,3 +19,21 @@
19
19
 
20
20
 
21
21
  `pip install pyinstaller`
22
+
23
+
24
+
25
+ を打つと、
26
+
27
+ ``'pip' は、内部コマンドまたは外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されていません。``
28
+
29
+ と、出ます。
30
+
31
+
32
+
33
+ 環境は、
34
+
35
+ `python3.8.3rc1`
36
+
37
+ `windouws10home`
38
+
39
+ です。