ckoepp / TwitterSearch

A Python library to easily iterate tweets found by the Twitter Search API
MIT License
387 stars 112 forks source link

Codec Error When Installing #21

Closed saniaabhari closed 10 years ago

saniaabhari commented 10 years ago

I am having a problem installing TwitterSearch using Python 3.4 on Windows 7. "pip install TwitterSearch" returns a codec error:

 return codecs.charmap_decode(input,self.errors,decoding_table)[0]
 UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 3826: character maps to      <undefined>

My full pip.log can be found here: https://gist.github.com/codedthiscode/a662f8223936e48a645d.

I also tried using easy_install but I am getting the same error. A fair amount of Googling has not solved the problem. Any advice?

ckoepp commented 10 years ago

Thanks for reporting this issue! Seems to be an encoding problem while reading the readme file. It should be solved in the newest version of TwitterSearch.

saniaabhari commented 10 years ago

Thanks, Installed successfully :+1: