Opam is a source-based package manager for OCaml. It supports multiple simultaneous compiler installations, flexible package constraints, and a Git-friendly development workflow.
Opam was created and is maintained by OCamlPro.
To get started, checkout the Install and Usage guides.
./configure
make lib-ext
as advertised by ./configure
if you don't have the
dependencies installed. This will locally take care of all OCaml dependencies
for you (downloading them, unless you used the inclusive archive we provide
for each release).make
make install
This is all you need for installing and using opam, but if you want to use the
opam-lib
(to work on opam-related tools), you need to link it to installed
libraries, rather than use make lib-ext
which would cause conflicts. It's
easier to already have a working opam installation in this case, so you can do
it as a second step.
opam install opam-lib --deps-only
if you already have a working instance. Re-run
./configure
once donemake libinstall
at the endIf you are developing OPAM, you may enable developer features by including the
--enable-developer-mode
parameter with ./configure
.
make cold
is provided as a facility to compile OCaml, then bootstrap opam.
You don't need need to run ./configure
in that case, but
you may specify CONFIGURE_ARGS
if needed, e.g.:
make cold CONFIGURE_ARGS="--prefix ~/local"
NOTE: You'll still need GNU make.
Have a bug or a feature request ? Please open an issue on our
bug-tracker. Please search for existing
issues before posting, and include the output of opam config report
and any
details that may help track down the issue.
The main documentation entry point to opam is the user manual,
available using opam --help
. To get help for a specific command, use
opam <command> --help
.
A collection of guides and tutorials is available online. They are generated from the files in doc/pages.
A more thorough technical document describing opam and specifying the package
description format is available in the
developer manual. make doc
will otherwise make the API documentation available under doc/
.
Keep track of development and community news.
Have a question that's not a feature request or bug report? Ask on the mailing list.
Chat with fellow opamers on IRC. On the irc.freenode.net
server,
in the #ocaml
or the #opam
channel.
We welcome contributions ! Please use Github's pull-request mechanism against
the master branch of the opam repository. If
that's not an option for you, you can use git format-patch
and email us.
The release cycle respects Semantic Versioning.
The version comparison function in src/core/opamVersionCompare.ml
is part of
the Dose library and Copyright 2011 Ralf Treinen.
All other code is:
Copyright 2012-2016 OCamlPro Copyright 2012 INRIA
All rights reserved. Opam is distributed under the terms of the GNU Lesser General Public License version 2.1, with the special exception on linking described in the file LICENSE.
Opam is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.