How to code such that the program does not wait for execution of a command?
Find more posts tagged with
Sort by:
1 - 4 of
41
Sort by:
1 - 1 of
11
I think what you are looking for is just to add an & to the end. Like this:
exec python_path python_file.py &;
Hi, Rachit Semalty
The following commands may help you
package require Thread
set thread_id [thread::create {exec python_path python_file.py}]
puts 1