c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python

| | python

I got this following error while running the python program to read csv data.
"PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' "

Permission Error Python
CODE:
import csv


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


SOLUTION:

Grant read permission to the user for the file.

icacls shampoo_sales.csv  /grant:r "$($env:USERNAME):(r)"

icacls is the command used for managing the file and folder permissions on the Windows.
shampoo_sales.csv is the name of the file you want to modify.
/grant:r specifies to grant permissions.
"%USERNAME%:R" grants read (R) permissions to the user running the command.

VIDEO GUIDE: