Ошибка при установке yesod на Haskell Platform 2012.2.0.0 в Windows XP

Я надеюсь, что попытался установить yesod с помощью «cabal install yesod-platform», но установка прервалась со следующей ошибкой:

cabal: Error: some packages failed to install:
 authenticate-1.2.1.1 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 http-conduit-1.4.1.10 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 wai-extra-1.2.0.5 depends on zlib-conduit-0.4.0.2 which failed to install.
 xss-sanitize-0.3.2 failed while unpacking the package. The exception was:
 user error (truncated tar archive)
 yesod-1.0.1.6 depends on zlib-conduit-0.4.0.2 which failed to install.
 yesod-auth-1.0.2.1 depends on zlib-conduit-0.4.0.2 which failed to install.
 yesod-core-1.0.1.2 depends on zlib-conduit-0.4.0.2 which failed to install.
 yesod-default-1.0.1.1 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 yesod-form-1.0.0.4 depends on zlib-conduit-0.4.0.2 which failed to install.
 yesod-json-1.0.0.1 depends on zlib-conduit-0.4.0.2 which failed to install.
 yesod-persistent-1.0.0.1 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 yesod-platform-1.0.5 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 yesod-routes-1.0.1.2 failed while unpacking the package. The exception was:
 user error (truncated tar archive)
 yesod-static-1.0.0.3 depends on zlib-conduit-0.4.0.2 which failed to
 install.
 zlib-conduit-0.4.0.2 failed while unpacking the package. The exception was:
 user error (truncated tar archive)

Любые идеи, как решить эту проблему?


person user1023733    schedule 04.07.2012    source источник


Ответы (1)


Похоже, что пакет zlib-conduit не загрузился должным образом. Удалите загрузку и повторите попытку:

  1. find out where your cabal directory is
    1. start ghci
    2. :m System.Directory
    3. getAppUserDataDirectory "cabal"
  2. удалите подкаталог packages\hackage.haskell.org\zlib-conduit вашего каталога клики
  3. беги cabal update
  4. повтор cabal install yesod-platform

(Шаг 3, вероятно, не нужен, но не повредит.)

person dave4420    schedule 04.07.2012