2022. 7. 12. 17:30ㆍFront-end
WebStorm <npm install error>
<첫번째시도>
- terminal에 작성:
npm install
- 에러내용:
npm ERR! Host key verification failed.
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
npm ERR!
npm ERR! exited with error code: 128
: 깃배쉬로 작성
ssh-keygen -t rsa -C "내깃헙메일주소"
그리고 내 깃헙들가서 setting에서 ssh key 에다가 작성함(.ssh/id_rsa 이 파일을 메모장으로 열어서 나온 내용을).
하지만 에러의 변화는 없음.
참조: https://maliceit.tistory.com/51
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
<두번쨰시도>
- terminal에 작성:
ssh-keyscan -t rsa github.com >> %userprofile%/.ssh/known_hosts
npm install
- 에러내용:
npm ERR! Error while executing:
npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git
npm ERR!
npm ERR! fatal: unable to connect to github.com:
npm ERR! github.com: errno=Unknown error
npm ERR!
npm ERR!
npm ERR! exited with error code: 128
: 에러는 났지만 에러내용이 바뀌었다! 뭔가 희망이 보인다!
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
<세번째시도>
- terminal에 작성:
git config --global url.https://github.com/.insteadOf git://github.com/
npm install
: 굿! 잘된다!!!!
참조: https://github.com/nodejs/help/issues/1461
'Front-end' 카테고리의 다른 글
[Vue.js] 상세페이지 모달창을 작성,수정이 안되게 하기! disabled vs readonly (0) | 2022.07.19 |
---|---|
[Vue.js] text-align (0) | 2022.07.14 |
[Vue.js] npm... 너란녀석을 어떻게 한담... (0) | 2022.07.06 |
[Vue.js] 전역으로 선언 된 것 거꾸로 찾아가는 법...엥? (0) | 2022.07.05 |
모달창 입력값 초기화 | vue.js (0) | 2022.06.08 |