Youtube Downloader Using Python
  First of all the things you need to have to Run this Program : 1. Anaconda Navigator or any python Interpreter, Download Anaconda Navigator From Here: Anaconda Navigator 2.  You need to install tkinter and pytube  for your Anaconda Navigator, So  simple Type Anaconda Prompt and Paste the following lines For tkinter:  conda install -c anaconda tk For pytube:  conda install pytube3 Now, From Here The Code Begins: # Importing necessary packages import tkinter as tk from tkinter import * from pytube import YouTube from tkinter import messagebox, filedialog     # Defining CreateWidgets() function # to create necessary tkinter widgets def Widgets():     link_label = Label(root,                        text="YouTube link  :",                    ...