I am trying to set up a batch file for a python script to run at a certain time every day. I set it up as such:
"C:\Users\payto\AppData\Local\Programs\Python\Python37-32\python.exe""C:\Users\payto\OneDrive\Documents\MIPS_Platform\script.py" pause
Problem is, when the script is called from the batch file I receive an error saying that :
ModuleNotFoundError: No module named 'selenium'
Selenium is installed in the folder but is not recognized when called from the batch file. How do I get around this?