ModuleNotFoundError
ModuleNotFoundErrorはモジュールが無いときに起きるエラー。
ModuleNotFoundError: No module named 'matplotlib'
matplotlibが無い、と怒られている。
ので、追加してあげれば良い。
$ pip install matplotlib
ModuleNotFoundError: No module named 'pandas'
同様に、pandasが無い、と怒られているので、追加してあげれば良い。
$ pip install pandas
ModuleNotFoundError: No module named 'PIL'
同様にPILが無い、と怒られているので、追加してあげれば良い。
$ pip install PIL
Could not find a version that satisfies the requirement PIL (from versions: )
No matching distribution found for PIL
ふぁっ!?無い!!
そう、PILはそのまんまPILではないのです。
pillowをインストールしましょう。
$ pip install pillow
ModuleNotFoundError: No module named 'cv2'
cv2もそのままでは怒られます。
$ pip install cv2
Collecting cv2
Could not find a version that satisfies the requirement cv2 (from versions: )
No matching distribution found for cv2
opencv-pythonをインストールしましょう。
$ pip install opencv-python
以上。