반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MySQL
- vuejs
- sequelize
- naver storage
- v-text-field height
- NUXT
- onsenui
- Vue
- Vuetify
- electron-nuxt
- error
- nodejs
- v-select
- vuetifyjs
- 동일 프로세스
- bucket max-key
- 프로세스 방지
- bucket cors
- Electron
- sort
- CSS
- c#
- Android
- kotlin
- xlsx
- JavaScript
- onsen-ui
- 동일 프로그램
- naver storage bucket error
- f035d
Archives
- Today
- Total
앙큼한 개발기록
[nuxt] 'create-nuxt-app' is not recognized as an internal or external command 에러 본문
카테고리 없음
[nuxt] 'create-nuxt-app' is not recognized as an internal or external command 에러
angkeum 2022. 12. 10. 19:51컴퓨터에서 nuxt 프로젝트를 새로 시작하기 위해
nuxt 커맨드를 쳐봤다.
npx
- npx create-nuxt-app <project-name>
yarn
- yarn create nuxt-app <project-name>
npm
- npm init nuxt-app <project-name>
다 해봤는데 위에 에러가 나오면서 안된다면
vue cli가 설치되지 않아서 발생하는 에러이다.
아래의 커맨드를 실행하고 하면 해결 된다.
npm i -g @vue/cli
npm i -g @vue/cli-init
Comments