반응형
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 |
Tags
- kotlin
- sequelize
- MySQL
- Android
- 동일 프로세스
- f035d
- NUXT
- CSS
- electron-nuxt
- onsenui
- naver storage
- bucket cors
- Vue
- JavaScript
- naver storage bucket error
- Vuetify
- onsen-ui
- bucket max-key
- vuejs
- error
- 동일 프로그램
- xlsx
- sort
- v-select
- Electron
- vuetifyjs
- c#
- nodejs
- v-text-field height
- 프로세스 방지
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