PIPを使用し、.pyを.exeにする記事を見つけたのですが、
PIPインストールすらうまくいきません(.py to .exe以前の問題)
pythonの対話シェルでやっても、WINDOWSの、コマンドプロンプトでやってもうまくいきません。
どうすればいいでしょうか?
cord
pip install pyinstaller
を打つと、
'pip' は、内部コマンドまたは外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されていません。
と、出ます。
環境は、
python3.8.3rc1
windouws10home
です。
追記
py -m pip install xxxx
でpipをインストールすると、
Collecting xxxx ERROR: Could not find a version that satisfies the requirement xxxx (from versions: none) ERROR: No matching distribution found for xxxx WARNING: You are using pip version 19.2.3, however version 20.1.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
と出ます
追記
py -m pip install --upgrade pip
して、
py -m pip install pyinstaller
してから(ここまではうまくいった)、
pyinstaller ○○〇 [--onefile] [--noconsole]
をうったら
'pyinstaller' は、内部コマンドまたは外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されていません。
と出ました。
回答2件
あなたの回答
tips
プレビュー