bash: /usr/bin/npm: No such file or directory

2103 단어 Directory
엉망 으로 만들어 진 Ubuntu 서버 에서 여러 가지 문제 가 발생 했 습 니 다. npm 는 항상 최신 버 전 (계속 1.4) 으로 올 라 가지 못 했 습 니 다. 그래서 저 는 아예 지 웠 습 니 다. 그 결과 다시 설치 하 러 갔 지만 설치 할 수 없 었 습 니 다. apt-get install npm 으로 설치 하면 다음 과 같은 오 류 를 얻 을 수 있 습 니 다.
The following packages have unmet dependencies:

npm : Depends: nodejs but it is not going to be installed

   Depends: nodejs-dev

   Depends: node-request but it is not going to be installed

   Depends: node-mkdirp but it is not going to be installed

   Depends: node-minimatch but it is not going to be installed

   Depends: node-semver but it is not going to be installed

   Depends: node-ini but it is not going to be installed

   Depends: node-graceful-fs but it is not going to be installed

   Depends: node-abbrev but it is not going to be installed

   Depends: node-nopt but it is not going to be installed

   Depends: node-fstream but it is not going to be installed

   Depends: node-rimraf but it is not going to be installed

   Depends: node-tar but it is not going to be installed

   Depends: node-which but it is not going to be installed

E: Unable to correct problems, you have held broken packages.


홈 페이지 에서 이런 방법 만 제공 하 다 니 github 홈 페이지 에서 제공 하 는 방법 은 curl -L https://npmjs.com/install.sh | sh 성공 한 것 으로 나 타 났 다.
여전히 사용 할 수 없 음:
npm -v

bash: /usr/bin/npm: No such file or directory


한바탕 뒤 져 보 았 지만 여러 가지 해결 방법 에 대해 함부로 시도 해 보 았 지만 진정 으로 해결 되 지 않 았 다. 그것 은 스스로 생각해 볼 수 밖 에 없 었 다.
  • npm 가 장 착 된 이상 어디 에 장 착 했 습 니까 (찾 았 습 니 다)
  • 설치 디 렉 터 리 로 직접 이동 (성공)
  • 그럼 소프트 체인 으로 해 보 자 (성공)
  •     root@walker:~# find / -name "npm-cli.js"
    
        /root/.node/lib/node_modules/npm/bin/npm-cli.js
    
        root@walker:~# /root/.node/lib/node_modules/npm/bin/npm-cli.js -v
    
        2.1.17
    
        root@walker:~# ln -s /root/.node/lib/node_modules/npm/bin/npm-cli.js /usr/bin/npm
    
        root@walker:~# npm -v
    
        2.1.17
    
    

    p. s. npm 가 정상적으로 작 동 했 지만 npm install 은 가방 하나 도 내리 지 못 하고 한 마디 npm cache clean 를 실 행 했 습 니 다. 괜 찮 은 것 같 습 니 다.

    좋은 웹페이지 즐겨찾기