Difference between revisions of "Ghc-pkg"

From HaskellWiki
Jump to navigation Jump to search
 
(Changed the lay-out)
Line 1: Line 1:
 
The command ghc-pkg can be used to handle [[GHC]] packages.
 
The command ghc-pkg can be used to handle [[GHC]] packages.
   
Most used commands:
+
== Most used commands ==
 
Remove a package from the GHC administration:
 
ghc-pkg unregister
 
ghc-pkg unregister
 
List all the registered packages:
Remove a package from the GHC administration.
 
 
ghc-pkg list
 
ghc-pkg list
List all the registered packages.
 
   
  +
== Links ==
 
For more information, see the [http://www.haskell.org/ghc/docs/6.12.2/html/users_guide/packages.html#package-management official documentation].
 
For more information, see the [http://www.haskell.org/ghc/docs/6.12.2/html/users_guide/packages.html#package-management official documentation].

Revision as of 13:33, 23 August 2010

The command ghc-pkg can be used to handle GHC packages.

Most used commands

Remove a package from the GHC administration:

 ghc-pkg unregister

List all the registered packages:

 ghc-pkg list

Links

For more information, see the official documentation.