gpt4 book ai didi

通过 Opam 安装的 Ocamlbuild 和软件包

转载 作者:行者123 更新时间:2023-12-04 11:39:48 26 4
gpt4 key购买 nike

我正在尝试制作这段代码:

open Lwt;;
open Cohttp;;
(* a simple function to access the content of the response *)
let content = function
| Some (_, body) -> Cohttp_lwt_unix.Body.string_of_body body


(* launch both requests in parallel *)
let t = Lwt_list.map_p Cohttp_lwt_unix.Client.get
(List.map Uri.of_string
[ "http://example.org/";
"http://example2.org/" ])

(* maps the result through the content function *)
let t2 = t >>= Lwt_list.map_p content

(* launch the event loop *)
let v = Lwt_main.run t2

但是,当我运行时
Ocamlbuild file.native

我收到未绑定(bind)的模块错误。

这些模块是通过 opam 安装的,当我运行时
ocamlfind query lwt 
/home/chris/.opam/system/lib/lwt
ocamlfind query cohttp
/home/chris/.opam/system/lib/cohttp

如何让 Ocamlbuild 找到这两个包?

我试过了
Ocamlbuild -pkgs cohttp,lwt file.native 

它没有用。它谈到了一个可能不正确的扩展名。我不认为这是问题所在。

如果有人能给我正确的代码来做到这一点,将不胜感激。谢谢!

最佳答案

Cohttp 已更新,因此我已更正您的代码以使用最新版本:

open Lwt;;
open Cohttp;;
(* a simple function to access the content of the response *)
let content = function
| Some (_, body) -> Cohttp_lwt_body.string_of_body body
| None -> assert false


(* launch both requests in parallel *)
let t = Lwt_list.map_p Cohttp_lwt_unix.Client.get
(List.map Uri.of_string
[ "http://google.com";
"http://yahoo.com" ])

(* maps the result through the content function *)
let t2 = t >>= Lwt_list.map_p content

(* launch the event loop *)
let v = Lwt_main.run t2

你可以用
ocamlbuild -use-ocamlfind -pkgs cohttp.lwt file.native

一些评论:

1) 您应该使用 -use-ocamlfindocamlbuild使用 opam(或任何其他已安装的 ocaml 库)

2) 要将 cohttp 与 lwt 一起使用,您应该使用 cohttp.lwt包裹。添加 lwt也不是绝对必要的。

关于通过 Opam 安装的 Ocamlbuild 和软件包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16783056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com