我是反应原生的新手,我想安装react-native-maps。但是,每当我在项目文件夹中运行npm install react-native-maps --save
时,项目中断node_modules/react-native
变为空,内部只有一个空文件夹node_modules
。我现在正在关注官方github的安装指南并使用react-native 0.55.3。
当我拨打npm install react-native-maps --save
时,下面附有转储:
screen_dump:react-native-maps安装失败:
答案 0 :(得分:0)
有一个已知问题是fixed with v5.7.0 (据我所知。我自己没试过)。
将npm更新为更新版本后,应删除node_modules
并使用npm install
进行全新安装,以重新安装所有必需的软件包。
另一个选择是使用yarn
。我认为这是一个更好的包管理工具。 (个人喜好。你不必使用它)。如果您决定使用纱线,您仍应删除node_modules
并使用yarn install
进行全新安装
答案 1 :(得分:0)
通过以下链接安装纱包管理器 enter link description here
使用以下命令安装软件包。
yarn add react-native-maps
这可能有效。对我来说,纱线打包机比npm好。