Reputation: 800
I am trying to run an python script using nohup I have used the following command
nohup python filename.py &
it shows the following error
nohup is not recognized as internal or external command
can anyone tell me why?
Upvotes: 2
Views: 8234
Reputation: 5291
On Windows OS, use:
start /min python filename.py &
On Windows, killing a parent process does not dictate that a child process be terminated. Therefore there is no direct nohup
equallent.
Upvotes: 4