我已经安装了最新的Vue CLI版本3.1.3。
我正在尝试使用vue create app
这很好,直到Yarn尝试安装依赖项为止:
yarn install v1.12.3
[1/4] Resolving packages...
[2/4] Fetching packages...
error eslint@5.9.0: The engine "node" is incompatible with this module. Expected version "^6.14.0 || ^8.10.0 || >=9.10.0". Got "8.9.4"
error Found incompatible module
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
ERROR command failed: yarn
node --version
显示我正在使用8.9.4。
当我尝试通过自制程序更新节点时,出现一条错误消息,提示我已经有节点11.2.0:
Simons-MBP-2:~ Simon$ brew upgrade node
Updating Homebrew...
Error: node 11.2.0 already installed
Simons-MBP-2:~ Simon$ node --version
v8.9.4
这是否与“路径”问题相关。我正在尝试在我所有其他项目所在的常规路径下的目录上创建vue应用。