How to Solve NameError: name 'check_output' is not defined -- subprocess

Solution: Import the 'check_output' module

To Solve the error, add the following line to the top of your code.

from subprocess import check_output

 

For more information:
Python subprocess check_output