command not found brew, node, dart, flutter
2023. 10. 28. 22:19
에러
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 로 브리뷰 설치 brew 읽기 경로 수정 특정 버전에서 Brew는 Intel 기반 Mac의 경우 '/usr/local/bin' 디렉터리에 설치되는 반면, M1/M2 Mac의 경우 Brew는 '/opt/homebrew/bin' 디렉터리에 설치됩니다. 이러한 차이로 인해 Brew 명령을 사용할 때 "zsh: 명령을 찾을 수 없음: Brew"라는 오류 메시지가 나타날 수 있습니다. cd ~/ touch .zprofile echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> $HOME/.zprofile ..
에러) fatal: not a git repository (or any of the parent directories): .git
2022. 4. 7. 21:09
에러
해결방법 git init
ChunkLoadError Loading chunk node_modules next_dist_client_dev_noop js failed
2022. 2. 23. 09:33
에러
1.node module 삭제 후 2. npm i 3. 컴파일 시작
{"_U": 0, "_V": 0, "_W": null, "_X": null}
2021. 7. 22. 13:24
에러
// 위 에러 문제는 프로미스로 반환된 경우이다 // 아래처림 비동기 처리해주면 된다 async componentDidMount() { const userInfo = await loadStorageData(); console.log(userInfo); if (!userInfo) { console.log(userInfo); // this.props.navigation.navigate("Main"); } }