1. 程式人生 > >解決react-native init專案遇到import type {CommandT} from './commands';的問題

解決react-native init專案遇到import type {CommandT} from './commands';的問題

最近在使用react-native init專案的時候,使用如下命令

react-native init MyProject

遇到以下問題
這裡寫圖片描述
建立專案的時候會出現以上問題,經過群友的提示,這是react-native 0.55.6版本的問題,需要在init專案的時候指定老版本號,比如0.55.4

react-native init MyProject --version 0.55.4

經測試,init成功
這裡寫圖片描述