해결(45)
-
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')
-
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 - 프로젝트의 자바 컴파일 버전 변경 프로젝트 선택 > 마우스 ..