Mac 出现zsh: command not found: pnpm
时间: 2024-02-13 19:58:38 浏览: 262
redis启动失败 zsh: command not found: redis-server
在Mac上出现"zsh: command not found: pnpm"的错误是因为系统无法找到pnpm命令。这可能是由于环境配置问题导致的。以下是几种解决方法:
1. 将.bash_profile中的环境变量添加到.zshrc中:
- 打开终端,输入以下命令打开.zshrc文件:
```shell
open .zshrc
```
- 将.bash_profile中的所有环境变量复制到.zshrc文件中保存。
2. 使用source命令更新配置:
- 打开终端,输入以下命令:
```shell
source .bash_profile
source .zshrc
```
3. 创建.bash_profile文件:
- 打开终端,输入以下命令创建.bash_profile文件:
```shell
touch .bash_profile
```
4. 创建npm全局目录:
- 打开终端,输入以下命令创建npm全局目录:
```shell
mkdir ~/.npm-global
```
5. 设置npm全局目录:
- 打开终端,输入以下命令设置npm全局目录:
```shell
npm config set prefix '~/.npm-global'
```
6. 更新配置:
- 打开终端,输入以下命令更新配置:
```shell
source .bash_profile
```
请注意,以上方法可能需要根据您的具体情况进行适当调整。如果问题仍然存在,请确保您已正确安装pnpm,并将其添加到系统路径中。
阅读全文