c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

ModuleNotFoundError: No module named 'openpyxl' - Python

| | python

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: