0
My system:
- Windows 10
- Bash on Ubuntu on Windows
I’m new to bash usage. I installed nodejs
, followed by npm
and finally grunt
. Everything worked well. I used the grunt
no problem, but I started having problems using the npm
. I couldn’t install anything. So I searched and decided to uninstall npm
through the following:
sudo rm -Rf /usr/local/{lib/Node{,/. npm,_modules},bin,share/man}/{npm*,Node*,man1/Node*}
To completely Uninstall Node + npm is to do the following:
go to /usr/local/lib and delete any Node and node_modules go to /usr/local/include and delete any Node and node_modules directory if you installed with Brew install Node, then run Brew Uninstall Node in your terminal check your Home directory for any local or lib or include folders, and delete any Node or node_modules from there go to /usr/local/bin and delete any Node Executable
taken from stackoverflow.
I reinstalled the nodejs
, and it went well, but when installing the npm
give me the following mistake:
luisalves@localhost:~$ sudo apt-get install npm
sudo: unable to resolve host localhost
A ler as listas de pacotes... Pronto
A construir árvore de dependências
A ler a informação de estado... Pronto
Alguns pacotes não puderam ser instalados. Isso pode significar que
você solicitou uma situação impossível ou se você está a usar a
distribuição unstable em que alguns pacotes pedidos ainda não foram
criados ou foram movidos do Incoming.
A seguinte informação pode ajudar a resolver a situação:
Os pacotes a seguir têm dependências não satisfeitas:
npm : Depende: nodejs mas não vai ser instalado
Depende: node-abbrev (>= 1.0.4) mas não vai ser instalado
Depende: node-ansi mas não vai ser instalado
Depende: node-archy mas não vai ser instalado
Depende: node-block-stream mas não vai ser instalado
Depende: node-fstream (>= 0.1.22) mas não vai ser instalado
Depende: node-fstream-ignore mas não vai ser instalado
Depende: node-github-url-from-git mas não vai ser instalado
Depende: node-glob (>= 3.1.21) mas não vai ser instalado
Depende: node-graceful-fs (>= 2.0.0) mas não vai ser instalado
Depende: node-inherits mas não vai ser instalado
Depende: node-ini (>= 1.1.0) mas não vai ser instalado
Depende: node-lockfile mas não vai ser instalado
Depende: node-lru-cache (>= 2.3.0) mas não vai ser instalado
Depende: node-minimatch (>= 0.2.11) mas não vai ser instalado
Depende: node-mkdirp (>= 0.3.3) mas não vai ser instalado
Depende: node-gyp (>= 0.10.9) mas não vai ser instalado
Depende: node-nopt (>= 2.1.1) mas não vai ser instalado
Depende: node-npmlog mas não vai ser instalado
Depende: node-once mas não vai ser instalado
Depende: node-osenv mas não vai ser instalado
Depende: node-read mas não vai ser instalado
Depende: node-read-package-json (>= 1.1.0) mas não vai ser instalado
Depende: node-request (>= 2.25.0) mas não vai ser instalado
Depende: node-retry mas não vai ser instalado
Depende: node-rimraf (>= 2.2.2) mas não vai ser instalado
Depende: node-semver (>= 2.1.0) mas não vai ser instalado
Depende: node-sha mas não vai ser instalado
Depende: node-slide mas não vai ser instalado
Depende: node-tar (>= 0.1.18) mas não vai ser instalado
Depende: node-which mas não vai ser instalado
E: Não foi possível corrigir problemas, você tem pacotes mantidos (hold) estragados.
Can you tell me how I can fix this? I will be able to get npm working again?
You are running bash as admin? Microsoft
– Weslley Rocha
Yes it was. Unfortunately as I did not find solution reinstalled Bouow. Still thanks for the interest.
– Luís Alves