
cabal install phooey Resolving dependencies... cabal: dependencies conflict: ghc-6.10.1 requires old-time ==1.0.0.2 however
When I try to install phooey I get conflict with old-time that I am not sure how to resolve. Any ideas? old-time-1.0.0.2 was excluded because ghc-6.10.1 requires old-time ==1.0.0.1 Thanks Daryoush

Hi, Daryoush Mehrtashwrites: > When I try to install phooey I get conflict with old-time that I am not sure how to resolve. Any > ideas? > >> cabal install phooey > Resolving dependencies... > cabal: dependencies conflict: ghc-6.10.1 requires old-time ==1.0.0.2 however > old-time-1.0.0.2 was excluded because ghc-6.10.1 requires old-time ==1.0.0.1 1. Use command "ghc-pkg list" list package-list, then you will get two package-list, remove same package that exist *two* package-list. (Use command "ghc-pkg unregister PackageName -force" remove pacakge). 2. And then remove pacakge old-time-1.0.0.2, use command "ghc-pkg unregister old-time-1.0.0.2 --force". Then everything is okay. -- Andy > > Thanks > > Daryoush > > _______________________________________________ > Haskell-Cafe mailing list > Haskell-Cafe@haskell.org > http://www.haskell.org/mailman/listinfo/haskell-cafe

On Sun, 2009-04-26 at 21:49 -0700, Daryoush Mehrtash wrote:
When I try to install phooey I get conflict with old-time that I am not sure how to resolve. Any ideas?
cabal install phooey Resolving dependencies... cabal: dependencies conflict: ghc-6.10.1 requires old-time ==1.0.0.2 however old-time-1.0.0.2 was excluded because ghc-6.10.1 requires old-time ==1.0.0.1
This looks very similar to: http://haskell.org/cabal/FAQ.html#dependencies-conflict but with a different core package. Duncan
participants (3)
-
Andy Stewart
-
Daryoush Mehrtash
-
Duncan Coutts