ThearchyHelios

Results 4 comments of ThearchyHelios

> Currently on mcOS Big Sur 11.2.3. It works. Perhaps there's something wrong with your JRE that causes the app not to run? same, 11.2.3 work for me

`install.sh`中有几个比较关键的问题,我罗列一下: 1. macOS在 `uname`中的结果是 `Darwin`, 不是 macOS 如果不进行修改,会引发报错 所以需要进行额外修改 2. 文件中存在了大量的针对大陆用户 gitee 链接的错误引用 ex: ```shell # 根据检测结果决定是否使用--gitee参数 if [ "$use_gitee" = true ]; then wget https://raw.githubusercontent.com/RT-Thread/env/master/install_macos.sh

> > `install.sh`中有几个比较关键的问题,我罗列一下: > > > > 1. macOS在 `uname`中的结果是 `Darwin`, 不是 macOS > > > > > > 如果不进行修改,会引发报错 > > > > 所以需要进行额外修改 > > > > 2....