[issue46578] cant DEBUG os.spawnv()

2022-01-31 Thread michaellongge
michaellongge added the comment: I can't use subprocess. Because the original problem is not that I want to use os.spawnv(). The original problem is that I go to install python3d, use setup.py install, the returned information shows that the compilation is completed, the link is also complet

[issue46578] cant DEBUG os.spawnv()

2022-01-30 Thread Eryk Sun
Eryk Sun added the comment: > cmd310 = ["/LIBPATH:D:\\python310\\lib\\site-packages\\torch\\lib", The `argv` parameter of os.spawnv() should begin with a command name to ensure that the application parses its command-line correctly. This doesn't necessarily have to be a file path since the `

[issue46578] cant DEBUG os.spawnv()

2022-01-29 Thread michaellongge
New submission from michaellongge : When i try to execute --link.exe *.obj-- on windows 11, i get one error LIB : fatal error LNK1181: cannot open input file 'Files.obj' It looks like a space path error so i run [os.spawnv(link.exe)] alone try to find out where made this error. But i cant DEBUG