如何安装 C++11 的手册页
How to install man pages for C++11
我知道 C++ 的手册页与 libstdc++6-<version>-doc
一起安装,但是当我寻找像 stoull
这样的函数时,没有手册页。即使 apropos
也找不到任何东西。
联机可用手册页:http://www.cplusplus.com/reference/string/stoull/ or http://en.cppreference.com/w/cpp/string/basic_string/stoul 但我想让它们离线。
有没有办法安装 GNU/Linux 下的手册页?
--科尔比
好的,我找到了这个:https://github.com/aitjcize/cppman
由于 cppman 在 Ubuntu/apt 下不再受支持,因此必须通过
安装
pip3 install cppman
如果您想让手册页离线,您可以通过
缓存它们
cppman -c
确保选择了您的首选来源。 cplusplus.com 应该是默认值。
我知道 C++ 的手册页与 libstdc++6-<version>-doc
一起安装,但是当我寻找像 stoull
这样的函数时,没有手册页。即使 apropos
也找不到任何东西。
联机可用手册页:http://www.cplusplus.com/reference/string/stoull/ or http://en.cppreference.com/w/cpp/string/basic_string/stoul 但我想让它们离线。
有没有办法安装 GNU/Linux 下的手册页?
--科尔比
好的,我找到了这个:https://github.com/aitjcize/cppman
由于 cppman 在 Ubuntu/apt 下不再受支持,因此必须通过
安装pip3 install cppman
如果您想让手册页离线,您可以通过
缓存它们cppman -c
确保选择了您的首选来源。 cplusplus.com 应该是默认值。