[hexo]zsh: command not found: hexo解决方法 apple M1
如果你用zsh可能会遇到这个问题, zsh: command not found: hexo
- ➜ ~✗ hexo server
- zsh: command not found: hexo
复制代码 macos已经安装hexo,但运行的时候却没有.
解决方法:
打到hexo的路径,然后把路径添加到~/.zshrc的$PATH里面- /Users/xxxx/node_modules/hexo/bin
复制代码
然后执行命令
- ➜ ~✗ hexo -v
- INFO Validating config
- hexo: 5.2.0
- hexo-cli: 4.2.0
- os: Darwin 20.1.0 darwin x64
- node: 15.6.0
- v8: 8.6.395.17-node.23
- uv: 1.40.0
- zlib: 1.2.11
- brotli: 1.0.9
- ares: 1.17.1
- modules: 88
- nghttp2: 1.42.0
- napi: 7
- llhttp: 2.1.3
- openssl: 1.1.1i
- cldr: 37.0
- icu: 67.1
- tz: 2019c
- unicode: 13.0
复制代码
|