Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a python script that when I run in terminal:

py filename.py

That works fine. But with this style:

./filename.py

I get Permission denied error. Any idea why? Thanks in advance.

share|improve this question

4 Answers

up vote 2 down vote accepted

When you do ./filename.py it executes the script.

When you do py filename.py the py program reads in your filename.py and runs.

share|improve this answer
Yes. thanks for telling me the difference. – unwise guy Feb 1 at 20:32

My guess is that python itself has -x (executable) rights, but filename.py does not

share|improve this answer

Your file needs to be marked as executable. You can see how its current permissions with ls(1) and change its permissions with chmod(1):

ls -l filename.py
chmod a+x filename.py

You will also need to make sure that the first line of your script has the hashbang correctly:

#!/usr/bin/py
# the rest of your script...
share|improve this answer
Great answer, more than I asked. However, that hashbang I had to use was /usr/bin/python or /usr/bin/evn python. – unwise guy Feb 1 at 20:30

You have three types of permissions in posix compiliant systems: read, write and execute. You simply don't have rights to execute the script. In order to add permissions you have to call something like:

chmod +x filename.py

You have to remember that ./filename.py won't execute your Python script even if you will add execution rights (if you don't have #!/usr/bin/py at the beginning). Python scripts need to be executed in an interpreter - not as a standalone application.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.