I’m trying to build and run a Python script, but nothing displays. I’ve searched everything I can find without success.
What I’m doing:
Python script is:
print(‘test’)
Have tried it with build system = automatic, = python, = python 3. I’ve rewritten the sublime-build file multiple times.
When I build, in the lower left it will say “13 characters selected; Building”, then the “Building” part disappears, presumably after it builds. But nothing at all appears in the output window.
I’ve checked that it’s not in syntax only. I’ve checked that Build Results = Show Build Results.
The only clue that I have is that when I view the console I see the below, which I presume is related:
Running python3 -i -u /Users/xxx/temp_test.py
Traceback (most recent call last):
File “/Applications/Sublime Text.app/Contents/MacOS/Lib/python38/sublime_plugin.py”, line 1657, in run_
return self.run(**args)
File “/Applications/Sublime Text.app/Contents/MacOS/Packages/Default.sublime-package/exec.py”, line 252, in run
PermissionError: [Errno 1] Operation not permitted
Any ideas for how to resolve this, or even a suggestion for where to start?