jreiberkyle/jupyterscad

Improve detect openscad executable using `which`

jeff-dh opened this issue · 3 comments

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'
>>> 

Out of curiosity, what os/install path are you using?

closed by #18