Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support to install on Debian 12 #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ python -m unidic download
```
If you encountered issues in macOS install, try the [Docker Install](#docker-install)

#### System requirements
On Debian 12, you may need to install the following packages:
- libmecab-dev
- python3-mecab

### Docker Install
To avoid compatibility issues, for Windows users and some macOS users, we suggest to run via Docker. Ensure that [you have Docker installed](https://docs.docker.com/engine/install/).

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
txtsplit
torch<2.0
torch
torchaudio
cached_path
transformers==4.27.4
mecab-python3==1.0.5
num2words==0.5.12
unidic_lite==1.0.8
unidic==1.1.0
fugashi
mecab-python3==1.0.5
pykakasi==2.2.1
fugashi==1.3.0
Expand Down