12월, 2023의 게시물 표시

[vs code] pid must be a number 에러 해결

이미지
pid must be a number 에러 해결 pid must be a number 에러 vs code에서 코드 실행 시키면 pid must be a number 에러가 발생한다. 나는 C언어 코드 실행 시키니 발생했다. 해결 방법에는 2개 있다. 첫 번째 해결 방법 순서대로 해보자. 1. Settings 클릭 2. code runner 입력 3. 스크롤 내려주다가 -> Set the working directory에 경로가 있다면 지워주자. 코드 다시 한번 실행 해 보고 에러 뜬다면 4번 하자. 4. 스크롤 내리다가 -> Run In Terminal 박스 체크 4번은 OUTPUT 대신 TERMINAL에 실행 결과가 나타난다. 두 번째 해결 방법 첫 번째 방법으로 안되면 node.js를 설치하자. 1. 아래 링크 타서 LTS 버전 설치. https://nodejs.org/en/ 2. 설치 후 코드 실행 해보자.

[android studio] Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin 'com.android.internal.application'. 에러 해결

Caused by: org.gradle.api.internal.plugins.PluginApplicationException: Failed to apply plugin 'com.android.internal.application'. 에러 해결 에러 발생 이유 간단한 문제다. 프로젝트 경로에 한글로 된 폴더가 있으면 에러가 발생한다. 예시 : C:\ 바탕 화면 \BlueBerry 에러 해결 프로젝트를 영어가 있는 경로로 곳으로 옮기면 된다. 예시 : C:\ Downloads \BlueBerry 해결 완료^^