본문 바로가기

프로그래밍/Error

(3)
[Error] SpringBoot 프로젝트를 Gradle로 빌드 오류 오류 No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.2.3 was found. The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '8.6' but: 해결 plugins { id 'java' id 'org.springframework.boot' version '2.7.16' id ..
[Github] 깃허브 Contributions 잔디심기 안될때 local의 user.email(이메일주소)와 github 계정의 이메일 주소가 같아야 한다. 1. 이메일 주소 확인하기 git config user.email 2. 이메일 주소 바꿔주기 git config --global user.email 바꿀@이메일주소.com https://velog.io/@think2wice/Github-%EB%B6%84%EB%AA%85-commit%EC%9D%84-%ED%96%88%EB%8A%94%EB%8D%B0-%EC%99%9C-contribution-%EA%B7%B8%EB%9E%98%ED%94%84%EB%8A%94-%EC%95%88%EC%B1%84%EC%9B%8C%EC%A7%80%EC%A7%80 [Github] 분명 commit을 했는데 왜 contribution 그래프는 ..
[Error] TypeError: 'str' object is not callable https://olppaemmit.tistory.com/m/214 [Error] zsh: command not found: python (Mac OS) python을 설치했는데 python --version으로 하면 python을 모른다고 하고 python3 --version으로 하면 버전을 알려준다. python으로 사용하고 싶어서 다음과 같은 방법을 사용했다. 1. 파이썬3 설치된 위치 확인 olppaemmit.tistory.com TypeError: 'str' object is not callable 자료형인 str을 변수명으로 사용하고 그 변수를 사용하려고 했으므로 에러 발생. str이라는 이름의 변수를 찾아 변수명을 바꿔주면 됨.