前提・実現したいこと
PyCharm で python のプログラムを実装しようとしています。
pip3 で Flack をインストールしようとするとエラーが発生します。
発生している問題・エラーメッセージ
PyCharm上のターミナルで pip3 install を実行したのですがエラーになります。解決方法が分からず困っています。何か心当たりのある方、ご意見いただけないでしょうか?
ちなみにアプリケーションから直接ターミナルを起動した場合は、pip3 install が成功するので、環境変数か権限の問題のような気はしています。
(venv) $ pip3 install Flask==1.0.2 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/flask/ 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/flask/ 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/flask/ 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/flask/ 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/flask/ Could not fetch URL https://pypi.org/simple/flask/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/flask/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping ERROR: Could not find a version that satisfies the requirement Flask==1.0.2 (from versions: none) ERROR: No matching distribution found for Flask==1.0.2 WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 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
試したこと
- pip3 の再インストール
- opensslの再インストール(brew install openssl)
環境
- macOS Catalina ver10.15.3
- PyCharm 2020.04.07
- pip3 ver 20.1 (python 3.7)
補足情報
①PyCharm上のターミナル上で pip3 -V を実行した時と、
②アプリケーションから直接ターミナルを起動し pip3 -V を実行した時で
実行結果が異なります。
①の実行結果:pip 20.1 from /Users/[ディレクトリ名]/venv/lib/python3.7/site-packages/pip (python 3.7)
②の実行結果:pip 20.1 from /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pip (python 3.6)
あなたの回答
tips
プレビュー