본문 바로가기

취미생활/파이썬3

Could not install packages due to an OSError: [WinError 5] 액세스가 거부되었습니다 현상 conda prompt를 관리자 권한으로 주고 pip install을 실행했으나, "Could not install packages due to an OSError: [WinError 5] 액세스가 거부되었습니다" 라고 에러발생 해결방법은 에러 마지막줄에 있었다 Consider using the `--user` option or check the permissions pip install koapy --user 2021. 8. 27.
DLL load failed: %1은(는) 올바른 Win32 응용 프로그램이 아닙니다. 키움 API를 사용해보려고 32비트로 설정하였으나 아래와 같은 에러발생 Please note and check the following: * The Python version is: Python3.7 from "C:\Users\filus\anaconda3\envs\py37_32\python.exe" * The NumPy version is: "1.20.3" and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help. Original error was: DLL load failed: %1은(는) 올바른 Win32 응용 프로그램이 아닙니다. 해결방.. 2021. 8. 27.
Allocation of 406978560 exceeds 10% of free system memory 현상 : tensorflow 사용 중 "Allocation of 406978560 exceeds 10% of free system memory" 경고와 함께 오류발생 내용 : 쥬피터노트북에서 model.fit 중 커널이 죽고 자동으로 시작하는 문제가 발생하여, 파이참에 그대로 옮겨보니 오류를 확인 할 수 있었다. 진행 1 : 아래 코드를 추가해보았으나, 경고만 없어질뿐 문제는 똑같았다. (해결안됨) import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' 진행 2 : BATCH_SIZE 변경 (적은값으로)시 정상으로 진행하였음. model.fit(x_train, y_train, epochs=EPOCHS, batch_size=BATCH_SIZE, callbacks=call.. 2021. 8. 17.