今天安装了hexo后,我就执行hexo server命令,想让hexo跑起来看看效果。
但是在执行hexo server后出现了“Usage: hexo <command>”的提示。详情见下面内容:
$ hexo server Usage: hexo <command> Commands: help Get help on a command. init Create a new Hexo folder. version Display version information. Global Options: --config Specify config file instead of using _config.yml --cwd Specify the CWD --debug Display all verbose messages in the terminal --draft Display draft posts --safe Disable all plugins and scripts --silent Hide output on console For more help, you can use 'hexo help [command]' for the detailed information or you can check the docs: http://hexo.io/docs/
出现这个的原因,有的说是因为没有安装hexo-server。但是执行下面的命令安装hexo-server后还是不行。
npm install hexo-server --save
最后我相信的看了官方文档后,发现执行“hexo init C:/hexo”后,没有到C:/hexo目录中执行“npm install”命令,因此产生了这个问题。正确的执行顺序如下:
hexo init C:/hexo cd C:/hexo npm install
然后在执行hexo server命令,即可成功启动服务。
hexo server INFO Start processing INFO Hexo is running at http://localhost:4000/. Press Ctrl+C to stop.
: » 解决执行hexo server出现Usage: hexo 的问题
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/251261.html