Why do i encounter "importerror: no module named 'module_name'" in python?

Example:

import module_name
This error suggests that the module you are trying to import doesn't exist or isn't installed.

Solution:

// Install the module using pip
// pip install module_name
import module_name

Beginner's Guide to Python