오류(107)
-
OSError: cannot write mode RGBA as JPEG - 에러메시지, 해결방법
에러메시지 OSError: cannot write mode RGBA as JPEG OSError: cannot write mode RGBA as JPEG 오류원인 jpg파일은 투명도를 표현할 수 없는 파일 포멧인데 여기에 alpha값을 저장하려고 할 경우 발생되어집니다. 해결방법 im = im.convert("RGB") im.save('python.jpg')
-
Error-git did not exit cleanly (exit code 1), git did not exit cleanly (exit code 128) - TortoiseGit Error
오류메시지 git did not exit cleanly (exit code 1) (563219 ms @ 2015-02-15 오전 1:21:22) git did not exit cleanly (exit code 128) 해당 오류메시지에 대한 정보로는 직접적인 해결방법을 확인할 수 없었습니다. 이하의 해결방법으로 해결된 경우도 있으니 참조하시기 바랍니다. 해결방법 1 Github 아이디/ 패스워드를 정확하게 입력하였는지 확인하시기 바랍니다. 해결방법 2 push하는 파일 중 50MB이상인 파일이 있는지 확인 후 해당 파일의 용량을 줄이거나 제외한 후 다시 시도해 보시기 바랍니다. 해결방법 3 다시 Clone Repository하여 저장소 생성 후 변경된 부분 다시 추가한 후 push 합니다. 해결방법 4 ..
-
Info - Choose R Installation - RStudio requires an existing installation of R in order to work. Please select the version of R to use. - RStudio 포터블버전 설치시 에러메시지
팝업창 메시지 Choose R Installation RStudio requires an existing installation of R in order to work. Please select the version of R to use. 포터블 버전 실행시 R 소프트웨어 깔려져 있지 않은 경우 아래와 같은 창이 나옵니다. R 다운로드 및 설치 R download http://codedragon.tistory.com/1300 R 다운로드 up to date http://codedragon.tistory.com/4976 R homepage The Comprehensive R Archive Network(CRAN)이라는 전세계적으로 연결되어 있는 미러사이트를 통해 R을 다운로드 받을 수 있습니다. http:..
-
printf( ) 사용시 컴파일 Error- Exception in thread "main" java.lang.Error: Unresolved compilation problem: The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int, float, char, String) - Eclipse..
오류 메시지 Exception in thread "main" java.lang.Error: Unresolved compilation problem: The method printf(String, Object[]) in the type PrintStream is not applicable for the arguments (String, int, float, char, String) 해결방법1 - 이클립스의 컴파일 버전 변경으로 해결 eclipse > windows > preference > Java-Compiler > Java-Compiler에서 Compiler compliance level:1.4을 1.7로 변경 변경 전 변경 후 해결방법2 - 프로젝트의 자바 컴파일 버전 변경 프로젝트 선택 > 마우스 ..
-
ERROR-ORA-28000: the account is locked
오류 메시지 ORA-28000: the account is locked lock 걸린 User 찾기 SELECT username, account_status, to_char(lock_date,'yy/mm/dd hh24:mi') lock_date, profile FROM dba_users; Lock 풀기 (유저가 user02 일 경우) alter user user02 account unlock;
-
디바이스 다시 연결하기-adb.exe 재시작 (디바이스 재접속), Android Studio
디바이스 다시 연결하기-adb.exe 재시작 (디바이스 재접속), Android Studio adb를 종료시키면 adb가 재시작되면서 디바이스를 서치하여 재접속하게 됩니다. 작업관리자 실행 adb.exe선택 >>> 마우스 우클릭 >>> 작업 끝내기 ADM에서 연결 접속을 시도하고 있는 것을 확인할 수 있습니다. 디바이스에서 확인버튼 터치 개발PC와 디바이스가 다시 연결되었습니다.