背景
過去に同様の質問をさせていただきましたが(リンク内容)再度質問させていただきます。理由としましては、前回の回答で「Python3.8.5ではインストールできない」と頂きましたが、他の記事を見るとPython3.8.5でもインストールできている方が居た為、「違う原因なのでは?」と思ったからです。また、前回の質問ではエラーコードを載せていなかった為、今回は載せようと思います。
環境
windows10(社用PC)
python3.8.5
プロキシ環境
困っている事
pip installでpyinstallerがインストールできません。他の外部ライブラリは問題なくインストールできます。
以下にコードを記しますので、どなたか解決方法をご教授いただけないでしょうか。
入力したコード↓
pip install pyinstaller --proxy=http:○○△△
出力されたコード(エラー)↓
Collecting pyinstaller Using cached pyinstaller-4.0.tar.gz (3.5 MB) Installing build dependencies ... error ERROR: Command errored out with exit status 1: command: 'c:\users\10053199\appdata\local\programs\python\python38-32\python.exe' 'c:\users\10053199\appdata\local\programs\python\python38-32\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\10053199\AppData\Local\Temp\pip-build-env-evmw3tyx\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel cwd: None Complete output (7 lines): WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x041FBCA0>: Failed to establish a new connection: [WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。')': /simple/setuptools/ WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x0421C070>: Failed to establish a new connection: [WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。')': /simple/setuptools/ WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x0421C1D8>: Failed to establish a new connection: [WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。')': /simple/setuptools/ WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x0421C1F0>: Failed to establish a new connection: [WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。')': /simple/setuptools/ WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x0421C2B0>: Failed to establish a new connection: [WinError 10061] 対象のコンピューターによって拒否されたため、接続できませんでした。')': /simple/setuptools/ ERROR: Could not find a version that satisfies the requirement setuptools>=40.8.0 (from versions: none) ERROR: No matching distribution found for setuptools>=40.8.0 ---------------------------------------- ERROR: Command errored out with exit status 1: 'c:\users\10053199\appdata\local\programs\python\python38-32\python.exe' 'c:\users\10053199\appdata\local\programs\python\python38-32\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\10053199\AppData\Local\Temp\pip-build-env-evmw3tyx\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'setuptools>=40.8.0' wheel Check the logs for full command output.
エラーメッセージが出たことで思考停止せず、メッセージの内容を見ましょう。
すみません、知らないワードばかりで理解が進まない状況です。
ダウンロードは完了しているが、その先でエラーが出ているのかな?という事はわかりましたが、それ以上はサッパリです...。
> 対象のコンピューターによって拒否されたため、接続できませんでした。
setuptoolsというワードが多いので、Ver.が古いのかな?と思いアップグレードしてみましたがダメでした。同じエラーが出ます。
setuptoolsのバージョンはいくつなのでしょうか。
setuptoolsのバージョンは50.3.0です
使っているPythonが32ビット版なのは意図したものですか?
参考にしていた入門書に32ビット版の方が動作が安定しているとあったので、32ビット版を使用しています。
私の環境(プロキシなし)ではインストールできたので
この辺りを試してみてはいかがでしょうか。
https://qiita.com/samunohito/items/40a03e1464899225e698
もしプロキシが原因であれば、ここら辺も参考になるかも知れません。
https://gammasoft.jp/support/pip-install-error/
皆さま、本当にありがとうございました。
回答1件
あなたの回答
tips
プレビュー