I am not clear about the specific principle, but by installing missing dependencies/submodules, they fixed some minor issues in the UI interface, the sidebar width so as to avoid deformation on MacOS. Not tested on Windows.
@dmMaze
Before
After
mecab is a dependency package of fugashi, but this package has not been maintained since 2021 and is incompatible with Apple computers using M chips. Therefore, when running pip install -r requirements.txt, an error will occur and the installation of the fugashi package will be aborted due to the inability to install the dependency package mecab. Therefore, it is necessary to install mecab-python3 before installing the fugashi package, which is a fork of mecab that is still being maintained.
I am not clear about the specific principle, but by installing missing dependencies/submodules, they fixed some minor issues in the UI interface, the sidebar width so as to avoid deformation on MacOS. Not tested on Windows. @dmMaze
Before
After
mecab
is a dependency package offugashi
, but this package has not been maintained since 2021 and is incompatible with Apple computers using M chips. Therefore, when runningpip install -r requirements.txt
, an error will occur and the installation of thefugashi
package will be aborted due to the inability to install the dependency packagemecab
. Therefore, it is necessary to installmecab-python3
before installing thefugashi
package, which is a fork ofmecab
that is still being maintained.