前提・実現したいこと
VScode環境でネットワークと通信を行うプログラムのpythonデバッグを行いたい
発生している問題・エラーメッセージ
VScodeを新規にインストール・環境設定等を実施しているのですが、
print('HELLO WORLD')
等のネットワークを介さないプログラムは問題なく動作するのですが、APIなど通信を行うものが全てタイムアウトしてしまう。
(pip installも同様にタイムアウト)
これまではAnaconda + spyder 環境でデバッグしておりこちらでは問題なく動作しているのでソースコードは問題ないと考え、
VScodeの環境設定等を疑っているのですがググってもproxy関係の情報しか出てこなかったので質問させていただきました。
(自宅ネットワークでありproxy環境ではありません)
以下はpip install -U pip に失敗している際のログです
WARNING: pip is configured with locations that require TLS/SSL,
however the ssl module in Python is not available.
WARNING: 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/pip/
WARNING: 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/pip/
WARNING: 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/pip/
WARNING: 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/pip/
WARNING: 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/pip/
Could 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
試したこと
vscodeの再インストール
→現象変わらず
ファイアーフォールの全開放
→現象変わらず
管理者権限でVScodeを起動
→現象変わらず
追記
Anaconda PromptとVScodeのターミナルで異なる動作をしている箇所を発見
import ssl
とした際にVScodeのターミナルで実施した場合のみ以下のエラーが発生する。
「if we can't import it, let the error propagate」でググってみましたがWinの情報がほぼ出てこず、詳細わからずでした。
エラーコード
import ssl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\user\Miniconda3\lib\ssl.py", line 98, in <module>
import _ssl # if we can't import it, let the error propagate
ImportError: DLL load failed: 指定されたモジュールが見つかりません。
補足情報(FW/ツールのバージョンなど)
Win10
VScode1.47.3
python3.7.1
conda4.8.3
回答2件
あなたの回答
tips
プレビュー