ionic is not recognized as an internal or external command operable program or batch file

风流意气都作罢 提交于 2020-11-25 03:59:50

问题


I have tried to install ionic framework. I was done with my first step by executing the command (installed node.js).

First command: npm install -g cordova ionic

But the second command is not executing instead stating"ionic is not recognized as an internal or external command operable program or batch file "

Second command:ionic start myApp tabs

I request to help me out


回答1:


I assume you are trying to install ionic in windows. I think you could try to install it alone, without cordova, and then try it again.

npm install -g ionic

Regards




回答2:


I'm using windows 10 for developing, I solved it by adding the npm global packages folder:

%USERPROFILE%\AppData\Roaming\npm

to the environment variable Path




回答3:


SET PATH=C:\Program Files\Nodejs;%PATH%

Is worked for me on Windows 10 :)




回答4:


İf "ionic" is installed;

1-Download and upgrade nodejs to latest version. download nodejs

2- run command:

npm uninstall -g ionic

3-Clear these files:

C:\Users\user\AppData\Roaming\npm

C:\Users\user\AppData\Roaming\npm-cache

3-run command:

npm install -g @ionic/cli

İt is done:)



来源:https://stackoverflow.com/questions/36500758/ionic-is-not-recognized-as-an-internal-or-external-command-operable-program-or-b

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!