###インストールエラーが出る
pulpのインストール時にエラーが出てしまい、うまくいきません。
どなたか解決方法のわかる方、お願いいたします。
python
1#実行コマンド 2pip install -U pulp
python
1#エラーメッセージ 2WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 3WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pulp/ 4WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pulp/ 5WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pulp/ 6WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pulp/ 7WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/pulp/ 8Could not fetch URL https://pypi.org/simple/pulp/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pulp/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping 9ERROR: Could not find a version that satisfies the requirement pulp (from versions: none) 10ERROR: No matching distribution found for pulp 11WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 12Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
python
1#実行コマンド 2conda install -c conda-forge pulp
python
1#エラーメッセージ 2Collecting package metadata (current_repodata.json): failed 3 4CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/conda-forge/win-64/current_repodata.json> 5Elapsed: - 6 7An HTTP error occurred when trying to retrieve this URL. 8HTTP errors are often intermittent, and a simple retry will get you on your way. 9'https://conda.anaconda.org/conda-forge/win-64'
###その他の情報
pythonのバージョンは3.9.6で、pulp自体対応しているバージョンが古いとのことだったので、他のインストール方法も調べてみましたが、どうやってもうまくいかず、質問するに至りました。
その他、どういった情報があった方が答えやすいなどありましたらコメントにてお願いします。
pulp以外のインストールはできるのでしょうか?
ネットワークはプロキシ下ではありませんか?
ターミナル(Windowsならコマンドプロンプト)で、
ping google.com
を実行したら、応答返りますか?
numpyやmatplotlibはpipでのインストールができています。
設定のプロキシの項目はすべてoffになっていたので、プロキシサーバーではないと思われます。
ターミナル(Windowsならコマンドプロンプト)で、
ping google.com
を実行したら、応答返りますか?
返ってきます。
google.com [172.217.161.238]に ping を送信しています 32 バイトのデータ:
172.217.161.238 からの応答: バイト数 =32 時間 =63ms TTL=113
172.217.161.238 からの応答: バイト数 =32 時間 =98ms TTL=113
172.217.161.238 からの応答: バイト数 =32 時間 =4ms TTL=113
172.217.161.238 からの応答: バイト数 =32 時間 =5ms TTL=113
172.217.161.238 の ping 統計:
パケット数: 送信 = 4、受信 = 4、損失 = 0 (0% の損失)、
ラウンド トリップの概算時間 (ミリ秒):
最小 = 4ms、最大 = 98ms、平均 = 42ms
それでしたら、
ping pypi.org
ping conda.anaconda.org
も応答返ると思いますが、念の為に確認してみてください
windows(コマンドプロンプト)ですが、どちらも応答あります。
ping pypi.org
pypi.org [151.101.192.223]に ping を送信しています 32 バイトのデータ:
151.101.192.223 からの応答: バイト数 =32 時間 =3ms TTL=54
151.101.192.223 からの応答: バイト数 =32 時間 =4ms TTL=54
151.101.192.223 からの応答: バイト数 =32 時間 =3ms TTL=54
151.101.192.223 からの応答: バイト数 =32 時間 =7ms TTL=54
151.101.192.223 の ping 統計:
パケット数: 送信 = 4、受信 = 4、損失 = 0 (0% の損失)、
ラウンド トリップの概算時間 (ミリ秒):
最小 = 3ms、最大 = 7ms、平均 = 4ms
ping conda.anaconda.org
conda.anaconda.org [104.17.92.24]に ping を送信しています 32 バイトのデータ:
104.17.92.24 からの応答: バイト数 =32 時間 =5ms TTL=55
104.17.92.24 からの応答: バイト数 =32 時間 =6ms TTL=55
104.17.92.24 からの応答: バイト数 =32 時間 =4ms TTL=55
104.17.92.24 からの応答: バイト数 =32 時間 =4ms TTL=55
104.17.92.24 の ping 統計:
パケット数: 送信 = 4、受信 = 4、損失 = 0 (0% の損失)、
ラウンド トリップの概算時間 (ミリ秒):
最小 = 4ms、最大 = 6ms、平均 = 4ms
できました!!
ありがとうございます!
もし分かればでいいのですが、anacondaではないcmdでのインストール方法などわかったりしますでしょうか?
https://teratail.com/questions/316833
の私の回答を見てください
できました!!!!
色々、本当にありがとうございます!
回答1件
あなたの回答
tips
プレビュー