I would like to install the modules \'mutagen\' and \'gTTS\' for my code, but I want to have it so it will install the modules on every computer that doesn\'t have them, but it
try:
import time
print("module 'time' is installed")
except ModuleNotFoundError:
print("module 'time' is not installed")
# or
install("time") # the install function from the question