[WINDOWS]Some diffrent with macos and windows
AshaSalorina opened this issue · 1 comments
AshaSalorina commented
subprocess.call
For Windows, it must be use 'cmd.exe' as first arg, just like this:
subprocess.call(['mkdir', 'tmp/']) => subprocess.call(['cmd.exe', 'mkdir', 'tmp/'])
fengredrum commented
Thx