🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] > [参考](https://blog.csdn.net/qq_23274715/article/details/104710448) > [github](https://github.com/man-pages-zh/manpages-zh) ## linux manpages中文手册安装 ``` //ubuntu sudo apt update sudo apt install manpages-zh // centos yum update yum install man-pages-zh-CN dpkg -L manpages-zh //使用此命令查看manpages-zh库的安装路径 man -M /usr/share/man/zh_CN open // 查看是否正确为中文显示 echo "alias cman='man -M /usr/share/man/zh_CN'" >> /etc/profile.d/cman.sh source /etc/profile.d/cman.sh cman open // 验证是否为中文显示 ```