MuNitCat

Results 3 comments of MuNitCat

我必然触发这个问题,根本没法跑 每次打开卡在设置代理这里 git版本卸载重装过目前是最新的 ```bash $ git version git version 2.40.0.windows.1 ``` ![image](https://user-images.githubusercontent.com/56761979/227785236-cfa67385-c0bb-4754-900d-d21b2c950579.png)

## 问题已解决 问题定位: `AzurLaneAutoScript\toolkit\Git` 使用的git造成的问题 ### 解决方法1:(非程序员不推荐该方法) 当电脑上已安装git时,修改`AzurLaneAutoScript\config\deploy.yaml` 中git的路径 需要修改为电脑上自己的git路径 ```yaml GitExecutable: ./toolkit/Git/mingw64/bin/git.exe ``` ### 解决方法2:(无脑) 打开[[Git官网](https://git-scm.com/download/win)](https://git-scm.com/download/win)下载 Portable ("thumbdrive edition") 版本(即免安装版本),替换掉`\toolkit\Git`中的git,**先删除原来的再复制进去** > #### Portable ("thumbdrive edition") > > **32-bit Git...

> error: Error: Unable to resolve module @react-native-community/slider from /Users/mac/Desktop/project/EduApp/node_modules/@ant-design/react-native/lib/slider/index.js: @react-native-community/slider could not be found within the project or in these directories: node_modules/@ant-design/react-native/node_modules node_modules 仔细看error内容,这个是缺少了依赖, 你需要执行 ``` yarn add @react-native-community/segmented-control...