###事象
初歩的な質問になってしまうかもしれませんが
python scripts importを実行したら書きエラーが出力されて失敗します。
Traceback (most recent call last): File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 174, in _run_module_as_main "__main__", fname, loader, pkg_name) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 72, in _run_code exec code in run_globals File "/Users/tom/dev/fni/catalog/scripts/__main__.py", line 1, in <module> from cmdline import cli File "scripts/cmdline.py", line 12, in <module> import mailer File "scripts/mailer.py", line 3, in <module> from email.message import EmailMessage ImportError: cannot import name EmailMessage
###試したこと
モジュールがありませんよと言われているので
pip install --user EmailMessage
を実行したところ...
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support ERROR: Could not find a version that satisfies the requirement EmailMessage (from versions: none) ERROR: No matching distribution found for EmailMessage
###気になること
これ以前にも
ImportError: cannot import name click
など何個か出てたのですがそちらはpip installで解決できました。
なぜEmailMessageのモジュールだけインストールできないかが気になりました。
お詳しい方がいらっしゃいましたら
よろしくお願いいたします。<(_ _)>
回答3件
あなたの回答
tips
プレビュー