오류해결
[오류해결 | React Native] Xcode must be fully installed before you can continue.
[오류해결 | React Native] Xcode must be fully installed before you can continue.
2024.05.31문제 상황React Native 프레임워크인 Expo에서 iOS 에뮬레이터로 앱을 실행하려는데 인식하지 못하는 경우가 있다. XCode는 정상적으로 설치했음에도, App Store에서 설치할 것인지 계속 묻는다. 예를 들면 아래와 같은 식이다.$ npm run iosXcode must be fully installed before you can continue. Continue to the App Store? 해결 방법다음 명령어를 입력해서 경로를 설정한다. $ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer 다음 다시 npm run ios 명령어를 실행한다.그럼 Expo에서 자동으로 시뮬레이터를 인식해서 앱 프로세스를 실행한다. $ np..
[오류해결] Remix V1 설치 후 실행 시 ERR_REQUIRE_ESM 오류 발생
[오류해결] Remix V1 설치 후 실행 시 ERR_REQUIRE_ESM 오류 발생
2024.02.16오류 발생 npx create-remix@1 Remix 프로젝트를 생성하고 실행하려는데 오류가 발생했다. 생성 시 선택한 옵션은 아래와 같다. 서버로 Remix App Server를 언어는 JavaScript를 선택했다. iksflow@Sungs-MacBook-Pro ~/studyroom npx create-remix@1 ? Where would you like to create your app? remix-app ? What type of app do you want to create? Just the basics ? Where do you want to deploy? Choose Remix App Server if you're unsure; it's easy to change deploymen..
[오류해결] Next.js yarn start 오류 [Error: ENOENT: no such file or directory, open '~/.next/BUILD_ID']
[오류해결] Next.js yarn start 오류 [Error: ENOENT: no such file or directory, open '~/.next/BUILD_ID']
2024.02.13오류 발생 Next.js 프로젝트를 실행하기 위해 yarn build 이후 yarn start를 입력하면 아래와 같은 오류가 발생했다. yarn start를 실행하면 BUILD_ID 파일을 찾을 수 없다는 에러 메시지가 나온다. $ yarn start yarn run v1.22.21 $ next start ▲ Next.js 14.1.0 - Local: http://localhost:3000 \[Error: ENOENT: no such file or directory, open '/Users/iksflow/workspace/backup-peace/.next/BUILD\_ID'\] { errno: -2, code: 'ENOENT', syscall: 'open', path: '/Users/iksflow/wor..
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
[오류해결::Ruby] OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources
2023.05.05문제 발생 상황 새로 나온 Ruby 3.2.2버전을 frum으로 설치하고 bundler를 설치하려는데 오류가 발생했다. gem install bundler를 입력하자 아래와 같이 오류가 나왔다. ➜ gem install bundler ERROR: While executing gem ... (Gem::Exception) OpenSSL is not available. Install OpenSSL and rebuild Ruby or use non-HTTPS sources (Gem::Exception) (이하 생략) 원인 분석 Ruby를 설치하는 과정에서 OpenSSL 관련 의존성이 누락된것이 원인이었다. 해결 방법 Ruby를 설치하는 과정에서 OpenSSL 의존성을 정확하게 참조할 수 있도록 해야한다. 만약 ..