Проблемы с загрузкой Ускорение
У меня проблемы с бегом haste-boot --force --local
(хотя то же самое происходит и при загрузке последней cabal
версия с простым haste-boot
). Это делает некоторый прогресс, а затем терпит неудачу с
cabal: Error: some packages failed to install:
bytestring-0.10.4.1 failed during the building phase. The exception was:
ExitFailure 1
haste-lib-0.4 depends on bytestring-0.10.4.1 which failed to install
Command '/home/inaimathi/.cabal/bin/haste-inst' failed with error code 1
Я с тех пор установил вручную bytestring-0.10.4.1
с cabal install
чтобы:
~/projects/haste-compiler $ cabal install bytestring-0.10.4.1
Resolving dependencies...
All the requested packages are already installed:
bytestring-0.10.4.1
Use --reinstall if you want to reinstall anyway.
~/projects/haste-compiler $
но haste
версия до сих пор не сотрудничает.
~/projects/haste-compiler $ haste-inst install bytestring-0.10.4.1 haste-inst install bytestring-0.10.4.1
Resolving dependencies...
In order, the following will be installed:
bytestring-0.10.4.1 (reinstall) changes: base-4.6.0.1 added, deepseq-1.4.0.0
added, integer-gmp-0.5.0.0 added
Warning: Note that reinstalls are always dangerous. Continuing anyway...
Configuring bytestring-0.10.4.1...
Building bytestring-0.10.4.1...
Preprocessing library bytestring-0.10.4.1...
hastec: user error (Haste needs to be rebooted; please run haste-boot)
Failed to install bytestring-0.10.4.1
cabal: Error: some packages failed to install:
bytestring-0.10.4.1 failed during the building phase. The exception was:
ExitFailure 1
~/projects/haste-compiler $
Исходя из этого сообщения об ошибке, похоже, что установка соответствующей bytestring
версия с haste-inst
требует, чтобы я бежал haste-boot
во-первых, но haste-boot
не удается из-за ошибки, связанной с установкой bytestring
,
Любые идеи о том, что я могу сделать здесь?
РЕДАКТИРОВАТЬ:
Соответствующий фрагмент, кажется, происходит намного раньше, чем фактическая ошибка при установке:
...
Data/ByteString/Internal.hs:212:10:
No instance for (Control.DeepSeq.GNFData
(GHC.Generics.Rep ByteString))
arising from a use of `Control.DeepSeq.$gdmrnf'
Possible fix:
add an instance declaration for
(Control.DeepSeq.GNFData (GHC.Generics.Rep ByteString))
In the expression: (Control.DeepSeq.$gdmrnf)
In an equation for `rnf': rnf = (Control.DeepSeq.$gdmrnf)
In the instance declaration for `NFData ByteString'
Failed to install bytestring-0.10.4.1
...
Редактировать 2: Джеффри, терминальный сеанс, который вы запрашивали, поместил бы этот пост выше 30000 символов. Вот ссылка на нее вместо этого.