How to Solve NameError: name 'Process' is not defined -- multiprocessing
Solution: Import the 'Process' module
To Solve the error, add the following line to the top of your code.
from multiprocessing import Process
For more information:
Python multiprocessing Process