Improve detect openscad executable using `which`
jeff-dh opened this issue · 3 comments
jeff-dh commented
On my system openscad is installed in /home/xxx/.local/bin
. Your detect executable function does not find it.
A call to which
would provide a valid path to the executable:
>>> from shutil import which
>>> which("openscad")
'/home/xxx/.local/bin/openscad'
>>>
jreiberkyle commented
Out of curiosity, what os/install path are you using?
jeff-dh commented
Linux, /home/xxx/.local/bin
jreiberkyle commented
closed by #18