I am trying to run
compile_command = r'"C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/MSBuild/15.0/Bin\MSBuild.exe" "input/Applications/EPMD-Software/IpProtector/IpProtector.sln" /t:Rebuild /p:Configuration = Release /p:Platform = x64'
os.system(compile_command)
and getting
'C:/Program' is not recognized as an internal or external command, operable program or batch file.
How do I get windows to understand the string with spaces? Can't rename "program files" unfortunately...
Thanks