I have a python script that uses classes from a file next to my main.py named 'src'. These classes use images from the file 'img' next to main.py as well.
I'm writting the path as follows :
"img/myImage.gif"
When I run it from my python shell it works fine but I just can't run it using the command prompt (path not found).
I tried
"/img/myImage.gif" and "./img/myImage.gif"
and also moving my 'img' file to src, and to main.py's parent file but it doesn't work..
I'm out of ideas.. any assistance would be appreciated, Thanks,