VueCLI wont install.
See original GitHub issueVersion
4.5.6
Environment info
Environment Info:
System:
OS: Windows 10 10.0.18362
CPU: (4) x64 Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz
Binaries:
Node: 14.11.0 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.5 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 6.14.8 - C:\Program Files\nodejs\npm.CMD
Browsers:
Chrome: Not Found
Edge: Spartan (44.18362.449.0)
npmGlobalPackages:
@vue/cli: Not Found
Steps to reproduce
yarn global add @vue/cli-init
vue init nuxt-community/express-template test
What is expected?
To make the template for nuxt vuejs
What is actually happening?
it says vuecli it’s not installed even tough i had just installed it.
Issue Analytics
- State:
- Created 3 years ago
- Comments:13
Top Results From Across the Web
Can't install @vue/cli 3 on Windows 10 - Stack Overflow
On Windows 10: Open start (Win Key) -> Type: cmd -> Right-Click: Command Prompt -> Select: Run as Administer -> Type: npm install...
Read more >Installing @vue/cli globally using npm causes errors ... - GitHub
Running npm install -g @vue/cli displays multiple warnings. Then, running npm list -g --depth=0 lists the global packages fine but then shows ...
Read more >Vue CLI won't install (npm install -g @vue/cli won't work)
1) You have two ways to install Vue CLI2) I tried to use "npm install -g @ vue / cli " but It...
Read more >Troubleshooting - Vue CLI
This document covers some common Vue CLI issues and how to resolve them. You should always follow these steps before opening a new...
Read more >npm install vue cli
2005 cadillac escalade blower motor won t turn off ... Install vue cli. sudo npm install --global vue-cli check vue cli. vue --version...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You install
@vue/cli
by both yarn and npm. If the output ofvue --version
is4.5.6
, It means you executedvue
from npm global bin path.So, try to run
npm uninstall @vue/cli -g
and use the version installed by yarn. @WishingirlSince
@vue/cli@^4.5.7
can output more accurate warnings message,import-global
should be removed or try to upgradeglobal-dirs
. Still need to be considered.