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.
|
|
|
When you do When you do |
||||
|
|
|
My guess is that python itself has -x (executable) rights, but filename.py does not |
|||
|
|
|
Your file needs to be marked as executable. You can see how its current permissions with
You will also need to make sure that the first line of your script has the hashbang correctly:
|
||||
|
|
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:
You have to remember that |
|||
|
|