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
- Git
- camera access
- custom printing
- 티스토리 성능
- device in use
- ffi-napi
- silent printing
- react-native-dotenv
- npm package
- Can't resolve
- rolldown
- Failed to compiled
- react-native
- vercel git lfs
- augmentedDevice
- ELECTRON
- camera permission
- Recoil
- animation
- github lfs
- 이미지 데이터 타입
- html
- Each child in a list should have a unique "key" prop.
- electron-packager
- github pdf
- github 100mb
- adb connect
- dvh
- nextjs
- adb pair
Archives
- Today
- Total
목록2023/06/15 (1)
Bleeding edge
zsh: command not found: code - 해결방법
문제가 생기는 조건 vscode의 terminal에서 code 라는 커맨드를 사용하면 zsh: command not found: code라는 에러가 생긴다. 이를 해결하기 위해서 이전에 검색을 해보니 Shift+cmd+P를 이용하여 code를 재설치하라는 이야기가 나왔었다. 문제는 이 문제가 근본적인 해결은 아니고 code에 대해서 한번 사용하고 나서 조금만 지나도 다시 같은 문제가 발생한다 해결 방법 관리자 권한 없이 실행을 위한 코드를 작성하기 위해 다음과 같이 code에 대한 내용을 추가하였다. code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;} source ~/.zshrc
CS
2023. 6. 15. 16:22