npm install报错:error git Refusing to remove it. Update manually

这个问题我是通过Goolge得到的答案:
https://github.com/APSL/react-native-version-number/issues/13
大意就是说需要将日志中报错的依赖包中的.git文件给删除(我猜想是因为.git中有一个hooks文件控制着被依赖包的下载),下面贴出我的日志:
npm install报错:error git Refusing to remove it. Update manually_第1张图片
在我安装expo-constants时候报出这个错误,可以看到是相关依赖包(或者是起到拦截作用的包?)对npm install expo-constants这个操作进行了阻挡,进入react-native-safe-area-view这个包下(注意要直接从项目文件进,在IDE中是看不到.git文件的),把.git删除后,再安装expo-constants文件就可以成功了。
npm install报错:error git Refusing to remove it. Update manually_第2张图片

你可能感兴趣的:(移动混合开发)