There are a lot of topics and suggestions concerning this type of error but nothing has worked for me. You can find a part of my code below:
import sys
import codecs
import csv
with codecs.open('Info Dataset.csv', 'r') as csvf:
reader = csv.reader(csvf)
reader = list(reader)
I have tried solutions like:
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
as also to add to my path the variable PYTHONIOENCODING=UTF-8 but nothing of these fixed the problem. Is there anything else i could try effectively ?