메모/오류 메모
-
Git ERROR : 403 push 해결 방법메모/오류 메모 2023. 11. 21. 13:17
remote: You are not allowed to push code The requested URL returned error: 403 해결 방법은 크게 4가지 입니다. git Global 계정 정보 수정하기 git 저장소 url 재설정하기 Windows pc에 등록된 자격증명(Credential) 삭제하고 다시 등록하기 MacOS Access Token 등록하기 1. Git Global 계정 정보 수정하기 Git 저장소를 clone해둔 경로로 가서 git config --global --list 위의 명령어를 우선 실행하여 user.name부분과 user.email부분이 본인 Github나 GitLab에 등록된 계정정보와 동일한지 우선 확인해주세요. 동알하다면 다음 단계로 넘어가시고 그렇지 않다면..
-
Python ERROR : pip 종속성(dependency) 해결 없음 문제메모/오류 메모 2023. 7. 14. 23:27
저의 경우 해당 에러가 tesorflow를 pip로 설치 중에 에러가 발생하였습니다. 더보기 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. gensim 4.3.0 requires FuzzyTM>=0.4.0, which is not installed. tables 3.8.0 requires blosc2~=2.0.0, which is not installed. tables 3.8.0 requires cython>=0.29.21, which is ..
-
Python TypeError: 'NoneType' object is not subscriptable메모/오류 메모 2022. 8. 2. 19:01
not subscriptable 은 var[ ] 와 같이 생긴 부분에서 에러가 났다는 말임. 출처: https://daewonyoon.tistory.com/368 [알락블록:티스토리] 이 오류를 위의 블로그를 참고하여 해결하였습니다. 위 글처럼 var[]처럼 생긴 부분에서 에러가 났었고 이 에러를 제가 이해한 대로라면, 메소드에 값을 넘겨줄 때 해당 메소드 안에서 처리할 수 없는 값이 넘어왔을 때 나는 에러 라고 보고 해당 메소드와 값을 넘기는 부분을 주의깊게 살펴서 해결 했습니다.