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

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:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- [WinError 145] The directory is not empty: 'FolderPath' - Python
- How to generate barcode using python?
Related Article