潘俊汛
潘俊汛
直接 clone 的源码,在安装依赖包之后,Linux 下仍然无法直接打开。因为对图形不熟,一番瞎折腾后成功打开了程序。 具体的改动如下: 1. 将 `invoker.py` 中的 43 行中的 [url ](https://github.com/RimoChan/Invoker/blob/4eaa36e191037184ad066fffe6ebc5508950a6ba/invoker.py#L43)部分改成绝对路径。 2. 然后注释掉 `wxcef.py` 的 [42 行](https://github.com/RimoChan/Invoker/blob/4eaa36e191037184ad066fffe6ebc5508950a6ba/wxcef.py#L42): ```python # assert self.browser_panel.GetHandle(), "Window handle not available" ``` 这样就成功启动了程序界面,能正常使用。但是出现了如下问题: ...
**What type of PR is this?** /kind bug **What this PR does / why we need it**: In `multipath.go` `errors.Is` can't handle `*exec.ExitError` correctly. Use `errors.As` to ensure capturing and...