/root/.yarn/bin:/root/.config/yarn/global/node_modules/.bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
时间: 2023-06-23 15:47:20 浏览: 299
从你给出的 PATH 环境变量可以看出,yarn 命令的路径已经被添加到了环境变量中。
如果在终端中执行 `yarn --version` 命令仍然提示 `yarn: command not found`,则可能是由于你使用的终端没有正确加载环境变量。你可以尝试在终端中执行以下命令:
```
source ~/.bashrc
```
该命令会重新加载 `.bashrc` 文件,使新的 PATH 环境变量生效。
如果你使用的不是 bash 终端,而是其它的终端程序,如 zsh 或 fish,则需要加载对应的配置文件,例如:
- 对于 zsh 终端:`source ~/.zshrc`
- 对于 fish 终端:`source ~/.config/fish/config.fish`
执行完上述命令后,再次执行 `yarn --version` 命令,应该就能够成功执行了。
相关问题
yarn config set registry https://registry.npm.taobao.org
`yarn` 是一个流行的 JavaScript 包管理器,用于管理和安装 Node.js 库。如果你想更改默认的包注册服务器,可以使用 `yarn config` 命令来设置配置项。要将默认注册仓库更改为淘宝npm镜像,你可以执行以下命令:
```shell
yarn config set registry https://registry.npm.taobao.org
```
这个命令会将 `yarn` 的默认包源从默认的 npm 注册处(通常是 https://registry.npmjs.org/)改为淘宝npm镜像,从而加速依赖下载速度,尤其是在网络条件较差的情况下。
yarn config set registry https://registry.npmmirror.com/
To configure yarn to use the `https://registry.npmmirror.com/` as your package registry, you would run the following command in your terminal:
```bash
yarn config set registry https://registry.npmmirror.com/
```
This command sets the `registry` option in your local `.yarnrc` configuration file, which determines where Yarn should look for packages when installing or resolving dependencies.
**相关问题--:**
1. What other options can be set using `yarn config`?
2. How does this change affect offline installation and caching in Yarn?
3. Can I set a different registry for different projects in Yarn?
阅读全文