I do that without the IDE:
$ ipython
$ edit file.py
$ :x (save and close)
It executes Python code, but not the one, where I use Pygame. It gives:
WARNING: Failure executing file:
In the IDE, my code executes.
|
1
|
I do that without the IDE:
It executes Python code, but not the one, where I use Pygame. It gives:
In the IDE, my code executes.
|
||||
|
|
|
If something doesn't work in On UNIXlike platforms, your script should start with a shebang -- that is, a line like the following:
should be the very first line (and should have a standard UNIX line ending). This tells the operating system to execute your code with the first python interpreter found in the The other option is to start the program manually -- as per the following example:
...or, to use a specific version of the interpreter (if more than one is installed):
|
|||
|
|