I am building a fake news detection model but finding difficulties in loading my csv file. I have read similar questions and tried different things i found online and suggestions from AI yet whatever I do, I get back to the same error message – PermissionError: [Errno 13] permission denied: ‘path link’
I am using jupyter on pycharm
!pip install nltk
import nltk
import pandas as pd
from nltk.tokenize import word_tokenize
from nltk.corpus import stopwords
from nltk.stem import WordNetLemmatizer
from collections import Counter
nltk.download('stopwords')
nltk.download('punkt')
news_df = pd.read_csv('C:/Users/JJ/Downloads/new
New contributor
Sandra Kalu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.