no image
[ERROR_react-native] ERR! missing script: android
리액트 네이티브로 새로 프로젝트를 하려고 보는데, 오류가 발생했다.. Error msg ERR! missing script: android npm ERR! A complete log of this run can be found in: npm ERR! 처음엔 환경변수 문제나 안드로이드 애뮬레이터 문제인 줄 알고 여러 삽질을 했는데 결국 node 버전 차이 때문에 발생한거였다,, 구글링 해보고 여러 결과 참고해도 문제가 해결이 안돼서 결국 노드를 다시 깔고 하게 됐다.. Reference 1 npm ERR! missing script: android I get several npm ERR! when trying to run : D:\React Native\cleanProject>npm run android ..
2022.02.03
no image
[ERROR_vscode] Input/output error: code
나같은 경우는 vscode를 보통 터미널 환경에서 들어가서 wsl 가상환경 내에서 작동 시키는데 정말 어제까지만 해도 잘되던 vscode 가 갑자기 안되는 것이었다....ㅠㅠ Input/output error: code 해당 에러가 떠서 vscode 업데이트 문제인가해서 터미널 환경에서 apt update하고 다시 설치했는데도 문제가 해결되지않아서 구글링하다가 문제해결! 내가 보고 해결한 깃허브 사이트! VS Code Server for WSL closed unexpectedly: Input/output error · Issue #2818 · microsoft/vscode-remote-release VSCode Version: 1.44.2 Local OS Version: Windows 10 Remote ..
2021.10.24
no image
[ERROR_git] remote: Support for password authentication was removed on August 13, 2021.
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: 여느때와 다름없이 알고리즘 문제를 풀고 깃허브에 푸쉬하는 중에 위 같은 에러가 떴다,, . . . 구글링 하다가 StackOverflow(https://stackoverflow.com/questions/68779331/use-token-to-push-some-..
2021.08.14
no image
[ERROR_git] remote: Permission to denied to(Window)
팀프로젝트로 git 계정 하나 파고 git push 하다가 오류가 발생했다. git config --global user.name "이름" git config --global user.email "이메일" 위 명령어로 팀계정으로 바꿔줬는데도 안돼서 구글링 해본 결과 제어판 > 사용자 계정 > Window 자격 증명 관리 > git:https://github.com > 편집 탭 에서 사용자 이름, 암호도 바꿔줘야 한다!
2021.08.03
no image
[ERROR_C] "char (*)[20]" 형식의 인수가 "char **" 형식의 매개 변수와 호환되지 않습니다.
더보기 #include #include void Swap(char *array[], int a, int b) { char temp[20] = ""; strcpy_s(temp, 20, array[a]); strcpy_s(array[a], 20, array[b]); strcpy_s(array[b], 20, temp); } void SortingName(char *array[]) { for (int i = 0; i array[j + 1][k * 2]) || ((array[j][k * 2] == array[j + 1][k * 2]) &..
2021.06.11