win7 python2.7.10安装chardet


第一次尝试:
因为装了easy_install,转到D:\python27\Scripts下执行easy_install chardet得到是chardet-2.3.0-py2.7.egg,执行


结果提示:Installed d:\python27\lib\site-packages\chardet-2.3.0-py2.7egg
          Processing dependencies for chardet
 Finished processing dependencies for chardet
>>>import chardet
报错:ImportError: No module named chardet
第二次尝试:
自己下载源包,解压后,转到解压目录下,执行setup.py install得到的还是chardet-2.3.0-py2.7.egg,执行
结果提示:Installed d:\python27\lib\site-packages\chardet-2.3.0-py2.7egg
          Processing dependencies for chardet
 Finished processing dependencies for chardet
>>>import chardet
报错:ImportError: No module named chardet
第3次尝试:
官网和网友推荐的方法是执行命令:pip install chardet
最终解决方案,删掉Lib\site-packages的chardet-2.3.0-py2.7.egg转到D:\python27\Scripts下执行pip install 


chardet,最终提示:Successfully installed chardet-2.3.0


参考:http://www.crifan.com/resolved_windows_install_the_python_chardet/,应该可以拿前面2次的那个.egg操作;

改后缀为.zip,把文件手动copy到lib\site-packages\下,未尝试

网上找了一堆文章看了没有找到是何原因。才接触python,以为得到chardet-2.3.0-py2.7.egg就代表module安装成功了

你可能感兴趣的:(win7 python2.7.10安装chardet)