oolongcha024

Results 2 comments of oolongcha024

我也遇到了类似的问题,具体表现为 `common.py` 文件报错。经过尝试我发现了解决方法,具体操作如下: **解决方案** 1. 在 Anki 主界面点击「工具」→「插件」→「插件文件」,进入 FastWordQuery 插件目录(1807206748),使用文本编辑器打开 「_common.py_」文件。 2. 跳转至 159-162 行,此处代码原本为: ```python menu.addAction( _("ALL_FIELDS"), lambda: query_from_editor_fields(self.editor), QKeySequence(my_shortcut)) ``` 将第二个参数和第三个参数位置对调即可,即修改为: ```python menu.addAction( _("ALL_FIELDS"), QKeySequence(my_shortcut), lambda: query_from_editor_fields(self.editor)) ```...

Same issue here Windows 11 with v1.2.23. I tried `bun install --no-cache` and it works for me. Here are some logs when I just run `bun install`. ``` ❯ bun...