Python

ModuleNotFoundError: No module named 'openpyxl' - Python

ModuleNotFoundError: No module named 'openpyxl' - Python, someone asked me to explain?

I got this following error while running a program to create an Excel file from a list of titles in python. "ModuleNotFoundError: No module named 'openpyxl'"

CODE:

from urllib.parse import urlparse

vimeourl = "https://vimeo.com/184241852"
parse_url = urlparse(vimeourl)
video_id = parse_url.path.split('/')[1]
thumbnail_url = f"https://vumbnail.com/" + video_id + ".jpg"
print(thumbnail_url)

VIDEO GUIDE:

Post your comments / questions