ERROR38 CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. source ~/opt/miniconda3/etc/profile.d/conda.sh - 참고 링크 https://yunwoong.tistory.com/112 [Anaconda] CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. 해결 방법 Anaconda로 만든 가상환경 활성화 시 아래와 같은 오류가 발생하는 경우가 있습니다. CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run 해결방법은 아래 yunwoong.tistory.com 2023. 1. 2. AttributeError: module 'tabula' has no attribute 'read_pdf' ERROR 원인 : 노트북에 java가 깔려있지 않아서 발생한 충돌이다. java install을 완료한 뒤 tabula install, 정상작동 되는지 확인해준다. 2022. 12. 29. remove local (untracked) files from the current Git working tree? git clean -n -d 어느 파일이 삭제될 것인지 볼 수 있다. git clean -fd 해당 파일을 삭제한다. - 참고 자료 https://stackoverflow.com/questions/61212/how-do-i-remove-local-untracked-files-from-the-current-git-working-tree How do I remove local (untracked) files from the current Git working tree? How do I delete untracked local files from the current working tree? stackoverflow.com 2022. 12. 14. DatabaseError: 1205 (HY000): Lock wait timeout exceeded; try restarting transaction timeout 설정값 자체를 바꿔주었다. 참고 링크 https://hyunsoft.tistory.com/entry/ERROR-1205-HY000-Lock-wait-timeout-exceeded-try-restarting-transaction?category=924633?category=924633 ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction 오류가 발생하는 경우 아래 내용 확인 후 처리 1단계 : 현재 설정 확인 mysql> select @@innodb_lock_wait_timeout.. 2022. 12. 11. IntegrityError: 1452 (23000): Cannot add or update a child row: a foreign key constraint fails The Problem is with FOREIGN KEY Constraint. By Default (SET FOREIGN_KEY_CHECKS = 1). FOREIGN_KEY_CHECKS option specifies whether or not to check foreign key constraints for InnoDB tables. MySQL - SET FOREIGN_KEY_CHECKS We can set foreign key check as disable before running Query. Disable Foreign key. Execute one of these lines before running your query, then you can run your query successfully. .. 2022. 12. 11. ProgrammingError: Not all parameters were used in the SQL statement field를 6개 넣어 놓고 sql insert values문에 %s을 5개만 지정해주어 발생한 ERROR같다. %s 문자열을 하나 추가하는 수정 작업 후, print(tuple(row))로 코드가 올바르게 작동하는 것을 확인하였다. 2022. 12. 9. ProgrammingError: 1045 (28000): Access denied for user ''@'' (using password: YES) vscode에서 AWS RDS와 연결하던 중, 평소 쓰던 admin과 다른 zero user로 설정을 해주려고 하던 중 뜬 ERROR이다. 내 경우, AWS RDS와 mysql 등 비밀번호는 잘 세팅해두었기에 이유를 찾기 어려웠는데, 평소의 쓰던 경로의 유저를 가져온게 아니라 새로운 database의 user을 가져온 것이라 비밀번호도 다르게 세팅해 둔 것을 잊고있던 것이다 .. 기억하기 쉬운 비밀번호로 설정해두어서 다행이었다. 가끔 user을 불러오거나 AWS RDS와 연결하는 과정에서 access denied ERROR가 뜰 때는 보통 Password와 관련된 에러였다. 2022. 12. 9. InterfaceError: Use multi=True when executing multiple statements 여러가지 Query 문을 실행하고자 할 때, multi = True를 명시해주어야 한다. cur = remote.cursor() sql = open("test04.sql").read() cur.execute(sql, multi=True) remote.close() 커서를 실행하는 구문에 multi=True 입력한다. 이렇게만 써도 되지만, 글쓴이는 코드가 돌아가는 것을 출력문으로 확인하고 싶어 for문을 돌려보았다. test04.sql 파일에 적어준 쿼리문들이 제대로 작동하는 것을 확인했다. 2022. 12. 8. AttributeError: '_io.TextIOWrapper' object has no attribute 'encode' 틀린 부분이 없다고 생각했는데 ERROR 발생했다. 정말 어이없게도 open("") 뒤에 .read()를 써주지 않아 발생한 에러였다. remote = mysql.connector.connect( host = , port = , user = "", password = "", database = "" ) cur = remote.cursor() sql = open("test03.sql").read() cur.execute(sql) remote.close() 코드 수정 후 실행되었다. 2022. 12. 8. 이전 1 2 3 4 5 다음