How to Resolve ModuleNotFoundError: No module named ‘importlib-metadata’? Improve Your Python Skills How to Install importlib-metadata on Windows? Type "cmd" in the search bar and hit Enter to open the command line. Type “ pip install importlib-metadata ” (without quotes) in the command line and hit Enter again.
from importlib import metadata except ImportError: # for Python<3.8 import importlib_metadata as metadata. The text was updated successfully, but these errors were encountered: ... ModuleNotFoundError: No module named 'importlib.metadata' ...
On pfsspy readthedocs builds I'm seeing the below error, which I think is new since sunpy 2.0. It looks like the issue is a hard requirement that importlib_metadata ...