에러61 git push 에러 에러 내용: failed to push some refs to git push origin mastergit push -u origin mastergit push -f origin master등 git push 에러가 발생했을 시 해결 git push 입력 후 github 아이디와 비밀번호 입력 2020. 12. 3. git commit 에러 에러 내용 *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity.Omit --global to set the identity only in this repository. 해결 git config --global user.email "you@example.com" git config --global user.name "Your Name" 2020. 12. 3. resize 에러 에러 : ValueError: Input images must have the same dimensions 해결 : shape로 resize 시 3개의 인자를 받아야 하는데 H, W 두 개만 받아 발생 (H, W) --> (H, W, d)(H, W, d) = imageA.shapeimageB = cv2.resize(imageB, (H, W)) 2020. 11. 29. 자바 스크립트 디버깅 에러 에러 : uncaught syntaxerror unexpected end of input 해결: function 호출 시 괄호가 제대로 닫히지 않아 발생한 에러로 {} () 확인필요 2020. 11. 29. TypeError: slice indices must be integers or None or have an __index__ method 에러 TypeError: slice indices must be integers or None or have an __index__ method 에러 에러 내용: TypeError: slice indices must be integers or None or have an __index__ method int/int 는 float 형으로 출력된다. len(s)/2 를 len(s)//2 로 고치면 해결된다. 2020. 11. 14. ./gradlew build JAVA_HOME 에러 gradlew build시 JAVA_HOME 설정 에러 에러 내용: please set the java_home variable in your environment to match the location of your java installation. 해결: JAVA_HOME 에 여러버전의 자바가 들어있으면 안된다. 만약 JDK가 하나만 들어있는데도 에러가 발생한다면 뒤에 붙은 ; 때문으로, 모두 삭제하고 다시 추가하면 정상 작동한다. 2020. 11. 8. 이전 1 ··· 5 6 7 8 9 10 11 다음