How to Solve NameError: name 'copy' is not defined -- shutil

Solution: Import the 'copy' module

# Add the following line to the top of your code
from shutil import copy

 

For more information:
shutil copy