Answers for "vue : The term 'vue' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again."

3

'vue' is not recognized as an internal or external command,

I had the same issue.
Here the quick fix.

after running the following command (as Admin)
npm install --global vue-cli

It will place the vue.cmd in the following directory
C:\Users\YourUserName\AppData\Roaming\npm

at least for me it's there.

To use vue as command in cmd. Open the cmd as admin and run the the following command.
setx /M path "%path%;%appdata%\npm"

Now restart the cmd and run the vue again. It should work just fine.
Posted by: Guest on May-03-2021

Code answers related to "vue : The term 'vue' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again."

Browse Popular Code Answers by Language