I have written a pygame program which works fine under IDLE3. I want to call up the program directly without using the python environment. I have done this in the past as follows:
chmod +x mygame.py
sudo cp mygame.py /usr/local/bin
sudo mv /usr/local/bin/mygame.py /usr/local/bin/mygame
then mygame works from LXTerminal
This time my new program loads a number of image files which cant be found.
I get the response : No such file or directory
Where should the image files be located?
Regards Trevor