安装keras时出现致命错误
Fatal error while installing keras
我试图使用 在 Anaconda 的 Windows 10 系统上安装 keras(用于使用 LSTM)。但是在 运行 命令 pip install git+git://github.com/Theano/Theano.git
之后,我收到了以下致命错误 -
C:\Anaconda>pip install git+git://github.com/Theano/Theano.git
Collecting git+git://github.com/Theano/Theano.git
Cloning git://github.com/Theano/Theano.git to
c:\users\krishna\appdata\local\temp\pip-reettr-build fatal: protocol
error: bad line length character:
Er
Command "git clone -q git://github.com/Theano/Theano.git
c:\users\krishna\appdata\local\temp\pip-reettr-build" failed with
error code 128 in None
我没有 github 帐户,但我使用 git
使用 bitbucket(如果这很重要的话)。
任何人都可以向我解释我犯了什么错误以及是否有出路?我的主要目标是在 Windows.
的 Anaconda 中使用 keras
谢谢!
似乎错误可能是因为我们有一个 git 存储库被列为依赖项。不过,还不能完全确定。 (Source)
解决方案是将 pip install git+git://github.com/Theano/Theano.git
替换为 pip install git+http://github.com/Theano/Theano.git
,即将第二个 git
替换为 http
(这是有效的,因为存储库是 public)
我试图使用 pip install git+git://github.com/Theano/Theano.git
之后,我收到了以下致命错误 -
C:\Anaconda>pip install git+git://github.com/Theano/Theano.git
Collecting git+git://github.com/Theano/Theano.git
Cloning git://github.com/Theano/Theano.git to c:\users\krishna\appdata\local\temp\pip-reettr-build fatal: protocol error: bad line length character:
Er
Command "git clone -q git://github.com/Theano/Theano.git c:\users\krishna\appdata\local\temp\pip-reettr-build" failed with error code 128 in None
我没有 github 帐户,但我使用 git
使用 bitbucket(如果这很重要的话)。
任何人都可以向我解释我犯了什么错误以及是否有出路?我的主要目标是在 Windows.
的 Anaconda 中使用 keras谢谢!
似乎错误可能是因为我们有一个 git 存储库被列为依赖项。不过,还不能完全确定。 (Source)
解决方案是将 pip install git+git://github.com/Theano/Theano.git
替换为 pip install git+http://github.com/Theano/Theano.git
,即将第二个 git
替换为 http
(这是有效的,因为存储库是 public)