使用CLI创建vue项目时出错

qyswt5oh  于 2023-11-21  发布在  Vue.js
关注(0)|答案(4)|浏览(125)

我试图在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)
这是什么原因呢?

ivqmmu1c

ivqmmu1c1#

根据error,它试图在node_modules中找到yarn的配置文件。我相信你的系统中没有安装yarn packageManager
试试这个vue config -s packageManager npm
然后重新运行vue create

bmvo0sr5

bmvo0sr52#

a)卸载yarn,以便create将回落到npm
B)显式地告诉它使用npm:

vue create myproject --packageManager npm

字符串

mu0hgdu0

mu0hgdu03#

卸载node和npm,然后重新启动我的电脑,然后重新安装它们。
第一个月
sudo apt autoremove
重新安装它
sudo apt install nodejs
sudo apt install npm

von4xj4u

von4xj4u4#

以下内容帮助了我。即使yarn已经安装好了,

npm install -g yarn

字符串
和重复

vue create project-name

相关问题