I have installed 3 new packages recently through NPM and none of them are executing.
I ran sudo npm install -g ionic
and the installation looked like normal.
Then I can run which ionic
and I get /usr/local/bin/ionic
which looks good.
But if I run ionic start myApp tabs
according to the documentation this should create a new ionic project. But instead it does absolutely nothing. No output on the command line, no project created. I press enter to execute the command and it immediately returns to another line on the command line as if I simply pressed enter with no command entered at all... This may not be clear, sorry.
I tried uninstalling ionic with sudo npm uninstall -g ionic
which uninstalled it successfully, and then re-installed it. No change in behavior. Same is happening for the packages cordova
and bower
. Note: all of these I installed at the same time, and all of them are not working. No output, no errors, no nothing. Running them with sudo
doesn't make a difference either.
I am running ubuntu 14.04.
Has anyone experienced this before?