AWS EC2에서 ubuntu server 18.06 인스턴스를 만들고, 프론트 배포를 위해 # apt-get install npm을 하고 # npm install 명령어를 입력하였다. 그러자 아래와 같은 에러가 발생하였다.
npm ERR! typeerror Error: Missing required argument #1
...
인터넷에 위 에러를 검색해보니, 최신버전이 아닌 오래된 npm이 설치되어 있어서 발생하는 에러라고 한다. 그래서 아래의 명령어를 실행해서 최신버전으로 업데이트 해주었다. 그 후 문제없이 # npm install 이 실행되었다.
# npm cache clean --force
# npm install -g n
# n stable
728x90
'Trouble Shootings' 카테고리의 다른 글
mvn clean package 에러: Failed to load ApplicationContext (0) | 2021.07.12 |
---|---|
Interactive authentication required 에러 (0) | 2021.06.17 |
'vue'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. (0) | 2020.12.01 |
Postgresql ERROR: hour "15" is invalid for the 12-hour clock 에러 (0) | 2020.10.16 |
Postgresql ERROR: conflicting values for "mm" field in formatting string 에러 (0) | 2020.10.16 |