我试图在Ubuntu中使用Vue CLI创建一个Vue项目,但总是得到同样的错误。我已经使用sudo npm i -g @vue/cli
安装了Vue CLI。
下面是错误消息:
0/0h0/0m0/0s 0/0::ERROR Error:Command failed:yarn config get registry ERROR:[Errno 2] No such file or directory:'config'
错误:命令失败:yarn config get registry
错误:[Errno 2]没有这样的文件或目录:'config'
at makeError(/usr/local/lib/node_modules/@vue/node_modules/execa/index.js:174:9)at Promise.all.then. js(/usr/local/lib/node_modules/@vue/node_modules/execa/index.js:278:16)at processTicksAndRejections(internal/process/next_tick.js:81:5)
这是什么原因呢?
4条答案
按热度按时间ivqmmu1c1#
根据
error
,它试图在node_modules
中找到yarn的配置文件。我相信你的系统中没有安装yarn
packageManager试试这个
vue config -s packageManager npm
然后重新运行
vue create
bmvo0sr52#
a)卸载yarn,以便create将回落到npm
B)显式地告诉它使用npm:
字符串
mu0hgdu03#
卸载node和npm,然后重新启动我的电脑,然后重新安装它们。
第一个月
sudo apt autoremove
个重新安装它
sudo apt install nodejs
个sudo apt install npm
个von4xj4u4#
以下内容帮助了我。即使yarn已经安装好了,
字符串
和重复
型