Solved – errno 13 permission denied python

In this article, you will learn how to solve errno 13 permission denied python error. Let’s look at a code example that produces the same…

The post Solved – errno 13 permission denied python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Deven

In this article, you will learn how to solve errno 13 permission denied python error.

Let’s look at a code example that produces the same error.

Create a Csv file fruitslist.csv

Mango,2,0
Potato,5,2
Onion,4,1
ladyfinger,2,3

and import it in the code snippet below:

import csv
with open("fruitslist.csv", "r") as file:
	list = csv.reader(file)
	for r in list:
		print(r)

Output

PermissionError: [Errno 13] Permission denied: 'fruitslist.csv'

In order to solve errno 13 permission denied python error we have to give Python right permissions to access a file.

In your terminal execute the following command:

chown admin:admin fruitslist.csv

or

chmod 755 fruitslist.csv

Note – Don’t forget to Replace admin with your username .

The post Solved – errno 13 permission denied python appeared first on CodeSource.io.


This content originally appeared on CodeSource.io and was authored by Deven


Print Share Comment Cite Upload Translate Updates
APA

Deven | Sciencx (2021-03-12T04:45:02+00:00) Solved – errno 13 permission denied python. Retrieved from https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/

MLA
" » Solved – errno 13 permission denied python." Deven | Sciencx - Friday March 12, 2021, https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/
HARVARD
Deven | Sciencx Friday March 12, 2021 » Solved – errno 13 permission denied python., viewed ,<https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/>
VANCOUVER
Deven | Sciencx - » Solved – errno 13 permission denied python. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/
CHICAGO
" » Solved – errno 13 permission denied python." Deven | Sciencx - Accessed . https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/
IEEE
" » Solved – errno 13 permission denied python." Deven | Sciencx [Online]. Available: https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/. [Accessed: ]
rf:citation
» Solved – errno 13 permission denied python | Deven | Sciencx | https://www.scien.cx/2021/03/12/solved-errno-13-permission-denied-python/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.