如何从开源包中检索一般信息,关注 poker-eval 库
我下载了 poker-eval 库,这是一个扑克开源资源。我无法安装,并获得有关基本功能的简要说明。 那么我有一个问题,如何检索开源库的基本信息?
I download the poker-eval library, a open-source resource for poker. I can't install, and get a brief description about the basic functions.
So i have a question, how do you retrieve the basic information on an open-source library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然每个程序的情况有所不同,但通常在顶级源目录中会有名为
README
和/或INSTALL
的文件,其中包含有关安装和使用的说明。如今,大多数软件包都包含一个脚本,调用为./configure
,它将检测系统的相关特征(以及大量不相关的特征)并准备一个 makefile,以便您可以运行make
编译程序/库,然后make install
安装它。对于像您正在查看的库这样的情况,希望也能为打算使用该库的开发人员提供文档。查看 README 或 INSTALL 文件、docs 目录(如果存在等)。有时,文档位于实际的源代码中(采用 Doxygen 格式或其他格式),您可以在那里阅读它,也可以使用正确的工具(例如 Doxygen)从源代码构建外部可读的文档文件。
While it varies from program to program, normally there will be files named
README
and/orINSTALL
in the top-level source directory containing instructions on installation and usage. These days most packages include a script, invoked as./configure
, which will detect the relevant characteristics of your system (along with plenty of irrelevant ones) and prepare a makefile so you can runmake
to compile the program/library, thenmake install
to install it.In the case of a library like the one you're looking at, there's hopefully also documentation for developers intending to use the library. Look through the
README
orINSTALL
file, adocs
directory (if present, etc.). Sometimes the documentation is in the actual source code (in Doxygen format or otherwise) and you can either read it there or use the right tools (e.g. Doxygen) to build externally-readable documentation files from the source.