I am trying to run a python script from a windows batch file.
My batch file is
@echo OFF
python C:\work\a.py
it works for me. But when I do it like this
@echo OFF
set fi = C:\work\a.py
python %fi%
it opens the python console.
I am trying to run a python script from a windows batch file.
My batch file is
@echo OFF
python C:\work\a.py
it works for me. But when I do it like this
@echo OFF
set fi = C:\work\a.py
python %fi%
it opens the python console.