Need help!: Python [Errno 13] Permission denied: 'artsciimg.png'
5 comments
The people in #python on the freenode IRC network are usually quite helpful. Try http://webchat.freenode.net/?channels=%23python&uio=OT10cnVl... if you don't have a real IRC client.
Try im.save("/tmp/artsciimg.png"). This will most likely show that it's a local permission error.
Then identify which directory it's trying to write to with os.system("pwd") and chmod 777 that directory.
Then identify which directory it's trying to write to with os.system("pwd") and chmod 777 that directory.
Holy shit! The error stopped. Thanks soo much. In fact, the error is, I was supposed to give absolute path for im.save() but your answer ("/tmp/artsciimg.png") showed me the way, Thank you :)
U should check your server rights were you are writing image. Is there write permission (-rw-rw-r--). Check it like command ls -l your/directory. If not add chmod a+r your/directory
I have tried chmod to all the folders, and files, it still doesn't work :(
man chown
man chmod
def magic(usrInput):
.
.
.
.
.
.
#End of code
And the error says: "[Errno 13] Permission denied: 'artsciimg.png'"
My local PC is running on Windows, and my server is on Ubuntu. I really need to know what's going on, the project is due in less than 36 hours :(