I tried executing start chrome
in the command line and it worked.
However when I tried the same using subprocess.Popen(), throws a file not found error.
Please find blow the code and let me know the reason for the same.
import subprocess as sp
sp.Popen(['start','chrome'])
Thank you.