I know similar questions has been asked already I have seen all of them and tried but of little help. I am using OSX 10.11 El Capitan, python3.6., virtual environment, tried
It's still most likely gzipped data. gzip's magic number is 0x1f 0x8b, which is consistent with the UnicodeDecodeError you get.
0x1f 0x8b
UnicodeDecodeError
You could try decompressing the data on the fly:
with open('destinations.csv', 'rb') as fd: gzip_fd = gzip.GzipFile(fileobj=fd) destinations = pd.read_csv(gzip_fd)