UnicodeDecodeError:'utf-8'编解码器无法解码位置1的字节0x8b

时间:2015-02-15 00:53:12

标签: python utf-8

我正在尝试从github安装python包。每当我尝试安装任何软件包时,我都会收到错误“UnicodeDecodeError:'utf-8'编解码器无法解码位置1中的字节0x8b:无效的起始字节”。我试过寻找类似问题的答案,但没有运气。对于这个问题,我将不胜感激。 错误截图链接 - https://www.dropbox.com/s/nc2i5cpi5wcyr3q/error%20install.png?dl=0

1 个答案:

答案 0 :(得分:4)

您无法使用以下方法安装软件包:

pip install https://github.com/Theano/Theano

相反,你应该使用:

pip install git+git://github.com/Theano/Theano.git

如果你想从Github安装。如果要从PyPI安装软件包,则应使用:

pip install Theano