3

我正在尝试通过 Windows 7 中的命令提示符运行 OpenScad。但是我无法让它工作。我将以下目录添加到路径

"C:\Program Files\OpenSCAD\"

并尝试运行以下脚本:

from os import listdir
from subprocess import call

files = listdir('.')
for f in files:
    if f.find(".scad") >= 0:            # get all .scad files in directory
        of = f.replace('.scad', '.stl') # name of the outfile .stl
        cmd = 'call (["openscad.com",  "-o", "{}",  "{}"])'.format(of, f)   #create openscad command
        exec(cmd)

我也试过用openscad、openscad.exe、openscad.com,到目前为止没有成功。我得到的错误是:

Traceback (most recent call last):
  File "C:\Users\Desktop\scad2stl.py", line 9, in <module>
    exec(cmd)
  File "<string>", line 1, in <module>
  File "C:\Users\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 247, in call
    with Popen(*popenargs, **kwargs) as p:
  File "C:\Users\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 676, in __init__
    restore_signals, start_new_session)
  File "C:\Users\AppData\Local\Programs\Python\Python35\lib\subprocess.py", line 955, in _execute_child
    startupinfo)
FileNotFoundError: [WinError 2] The specified file could not be found

有什么建议么?

4

1 回答 1

0

我刚刚看到了这个帖子,我已经让它在使用 windows power shell 时工作,由于无法在 cmd 上工作。因此,例如,这不适用于 cmd>

openscad -o render.png --imgsize=2048,2048 assembly.scad

但它确实适用于电源外壳(注意 ./ 在 bigining 中):

./openscad -o render.png --imgsize=2048,2048 assembly.scad

希望能帮助到你。此致

于 2019-03-21T23:10:35.093 回答