I just want to make my script as an application. double-click and run instead of running in terminal. I have done it before with automator but now, on el capitan it doesn't work. It only gives error without explanation.
When I try with automator I get this error:
"The action “Run Shell Script” encountered an error."
Also I tried the trick below, still I am not able to do this.
#!/usr/bin/env python
chmod +x script.py
SOLVED:
After these two steps. I changed "Open with" to terminal for only this file and changed the
#!/usr/bin/env python
, it works. But it doesn't work without the two steps below, you need to follow all steps.Add
#!/usr/local/bin/python
in the beginning of the code. Then runchmod +x myscript.py
in terminal. After that change the application open with to Terminal.It worked for me.