こんにちは、Expo React-Nativeで問題が発生しています。 iOSシミュレーターを起動しようとするたびに。私はこのエラーを受け取ります:
Simulator is installed but is identified as 'com.Apple.CoreSimulator.SimulatorTrampoline'; don't know what that is.
Simulator not installed. Please visit https://developer.Apple.com/xcode/download/ to download Xcode and the iOS simulator. If you already have the latest version of Xcode installed, you may have to run the command `Sudo xcode-select -s /Applications/Xcode.app`.
私のNPMバージョンは6.7.0react-native-cli:2.0.1反応ネイティブ:0.57.1Expoバージョン2.11.9
また、Xcodeのコマンドラインツールが完全に設定されていることを確認しました Xcode CommandLineTools
最後に、コマンドSudo xcode-select -s /Applications/Xcode.app
も実行しようとしました
何も動作しません。
他の人の役に立つ場合、コマンドラインツールがインストールされていなかったため、シミュレータを最初に開くという修正は最初は機能しませんでした。 xCodeを開いてpreferences > locations > command line tools
に移動し、それが空の場合はインストールする必要があります。それらがインストールされると、expo start
はOPと同じエラーを返しますが、open -a Simulator && expo start
の提案を使用できます。
???? 同じ問題に1か月間直面してきましたが、最終的に私に役立つ解決策を見つけました:
Sudo npm install --unsafe-perm -g expo-cli
Sudo npm install -g n
npm cache clean -f
npm start
✨これでiOSシミュレーターが正常に起動し、プロジェクトがビルドされました! ✨