问题
I am trying to learn cabal, and have tested several my own little projects, now I want to clean them up.
Basically, if I am working without a sandbox
, my workflow is:
- run
cabal init
- edit
src/Mylib.hs
, and then editmylibname.cabal
file - run
cabal build
- run
cabal repl
and test my code - run
cabal install
Now, I see my own project:
- installed into
~/.cabal/lib/x86-64-linux-ghc-7.10.1
- registered in
~/.ghc/package.conf.d
I can write import Mylib
in my other haskell source code, so I think the package is successfully installed.
Then I want to uninstall the package, as the package itself is just meaningless experiment code.
I read this article, who says that:
There is no "cabal uninstall" command. You can only unregister packages with ghc-pkg:
ghc-pkg unregister
so I run
ghc-pkg unregister mylibname
Now, it seems that the package is unregistered in ~/ghc/package.conf.d
, however, there is still a compiled library in ~/.cabal/lib/x86-64-linux-ghc-7.10.1
.
So, how could I completly remove my project, could I just rm -rf
the library in ~/.cabal
?
回答1:
You can delete the files yourself from the packages directory. However, the reason no command to do so is provided is there's in general no guarantee something may not have linked against them elsewhere, and so such deletions may cause breakages. That said, there's also a tool that goes and does the deletion for you if you really want it.
http://hackage.haskell.org/package/cabal-uninstall
And there's a tool with a bit more functionality that also lets you figure out what packages have no reverse deps, so at least no other packages break:
https://github.com/iquiw/cabal-delete
来源:https://stackoverflow.com/questions/31332033/how-to-completly-remove-packages-installed-by-cabal