해결방법(144)
-
phpMyAdmin 접속하기
XAMPP 설치 방법 https://codedragon.tistory.com/8806 XAMPP 설치 방법 XAMPP 설치 방법 · XAMPP - download(다운로드) · https://codedragon.tistory.com/7301 · XAMPP - install(설치하기) · https://codedragon.tistory.com/8520 · .. codedragon.tistory.com phpMyAdmin 접속하기 Apache와 MySQL이 구동되어져 있어야 합니다. "MySQL"의 [Admin]버튼을 클릭합니다. 실행시 에러가 발생하면 바로 아래의 링크를 통해 해결합니다. https://codedragon.tistory.com/8640 정상적으로 접속이 되어졌습니다.
-
FileNotFoundError: [Errno 2] No such file or directory: 오류 해결방법
오류 메시지 FileNotFoundError: [Errno 2] No such file or directory: 오류 원인 설정되어진 작업경로를 기준으로 파일 찾기 때문에 오류가 나옵니다. 해결방법 VS Code "EXPLORER"에서 작업 경로 지정한 경우 해당 작업 경로를 기준으로 해당 코드가 있는 경로 까지 다시 지정해야 합니다. 즉, os.getcwd() 메소드를 실행하면 VS Code의 "EXPLORER"에서 작업 경로 지정까지만 나옵니다. 파일을 정확하게 오픈하기 위해서는 절대경로를 지정해 주거나 작업경로를 현재 사용하는 경로로 지정해 주어야 합니다. # VSCode에서 - 작업 디렉토리 변경하기 import os # Get the current working directory (cwd) cu..
-
Emulator: PANIC: Missing emulator engine program for 'x86' CPU. - 에러 메시지, 해결방법
에러 메시지Emulator: PANIC: Missing emulator engine program for 'x86' CPU. 해결방법emulator -list-avds 명령어로 현재 AVD 목록 및 AVD이름을 확인한 후 >>emulator -avd AVD명을 입력하며 실행합니다.실행이 정상적으로 되면 emulator가 실행이 되어지며 "emulator: INFO: boot completed"가 표시됩니다. 매번 해당 명령을 수행하여 애뮬레이터를 실행해야 합니다. Android > SDK Manager" - Click "SDK Tools" tab - Check "Android Emulator" checkbox - Click "OK" emulator: INFO: boot completed 해결방법 2htt..
-
Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. 해결방법
오류메시지 --------------------------- Java Virtual Machine Launcher --------------------------- Error: Could not create the Java Virtual Machine. Error: A fatal exception has occurred. Program will exit. --------------------------- 확인 --------------------------- 해결방법 javaw.exe파일 경로 확인 eclipse 설정 변경하기 javaw.exe파일 경로 확인 javaw.exe파일이 있는 경로를 확인합니다. JDK가 설치된 경로의 bin폴더에서 javaw.exe파일을 확인합니다. javaw.exe 경로 -..
-
해당 패키지에 생성된 파일인데도 에러가 발생합니다. 해결방법
오류메시지해당 패키지에 생성된 파일인데도 에러가 발생합니다. //package ch01_variable fun main(args: Array) { println("Test") }
-
Could not find com.android.tools.build:gradle:x.x.x.
에러메시지 안드로이드스튜디오 업에디트 후 기존 프로젝트를 오픈할 경우 그래들도구 버전과 SDK 버전이 맞지 않아 아래와 같은 오류메시지가 발생할 수 있습니다. Could not find com.android.tools.build:gradle:3.0.1. Error:Could not find com.android.tools.build:gradle:3.0.1. Searched in the following locations: https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1...