NPX, 설치가 오류 코드 1로 실패했습니다 해결방법
설치가 오류 코드 1로 실패했습니다와 같은 설치 오류 시 NPM이 설치 되는 경로에 띄어쓰기가 있는지 확인한다.
D:\docker-react-app>npx create-react-app ./
npm ERR! code ENOLOCAL
npm ERR! Could not install from "HOON\AppData\Roaming\npm-cache\_npx\60212" as it does not contain a package.json file.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\TEST USER HOON\AppData\Roaming\npm-cache\_logs\2021-07-17T15_25_55_433Z-debug.log
create-react-app@latest 설치가 오류 코드 1로 실패했습니다
위에서 보이는것 처럼, 띄어쓰기로 인해 디렉토리를 TEST USER HOON이 아닌 HOON 부터 읽었다.
해결방법은 npm의 전역 설치 경로를 띄어쓰기가 없는 경로로 변경하면 된다.
D:\docker-react-app>npm config set prefix c:\npm
D:\docker-react-app>npm config set cache c:\npm-cache
설정 후 npx 정상 동작 확인.
반응형
'Web Programming' 카테고리의 다른 글
Nginx log 관련 설정 파헤치기 (feat. AWS EC2) (0) | 2021.12.15 |
---|---|
AWS EC2 웹 서버 nginx 설치, 설정 부터 실행까지 ( 프리티어 ) (0) | 2021.12.14 |
Spring boot - Log4j 2.x 취약점 (ldap, jndi공격) 현상 및 해결방법 (0) | 2021.12.13 |
eslint 커맨드를 찾지 못하는 경우 ( esline --init 오류 ) (0) | 2021.08.14 |
Spring boot, URI 쉽게 만들기 ( with UriComponentsBuilder ) (1) | 2021.05.03 |