我知道C++的手册页是与libstdc++6-<version>-doc一起安装的,但是当我寻找像stoull这样的函数时,没有手册页。就连apropos也找不到任何东西。
手册页可以在线获得:http://www.cplusplus.com/reference/string/stoull/或串/石,但我希望它们离线。
有办法在GNU/Linux下安装手册页吗?
-科比
发布于 2015-12-29 08:36:24
好吧,我找到了这个:https://github.com/aitjcize/cppman
由于cppman不再受Ubuntu/apt的支持,所以必须通过
pip3 install cppman如果您想让手册页脱机,您可以通过以下方式缓存它们
cppman -c确保选择了首选的源。cplusplus.com应该是默认的。
https://stackoverflow.com/questions/34507045
复制相似问题