Difference between revisions of "Voikkospell"

From Apertium
Jump to navigation Jump to search
Line 1: Line 1:
 
==Installation==
 
==Installation==
 
[https://github.com/m5w/corevoikko m5w/corevoikko], a clone of [https://github.com/voikko/corevoikko corevoikko], supports apertium stream format.
 
[https://github.com/m5w/corevoikko m5w/corevoikko], a clone of [https://github.com/voikko/corevoikko corevoikko], supports apertium stream format.
  +
  +
To clone it, execute the following command:
  +
  +
<pre>
  +
git clone https://github.com/m5w/corevoikko.git corevoikko
  +
</pre>
  +
  +
To install the fork's voikkospell, install its libvoikko, which has the same dependencies as [https://github.com/voikko/corevoikko/libvoikko]. After installing them, execute the following commands:
  +
  +
<pre>
  +
cd corevoikko/libvoikko
  +
./configure
  +
make
  +
sudo make install
  +
</pre>
  +
  +
If you do not have root privileges or would like to specify where to install libvoikko, execute the following instead: (Otherwise, you are finished with installation.)
  +
  +
<pre>
  +
cd corevoikko/libvoikko
  +
# e.g.
  +
PREFIX="$HOME/install/corevoikko"
  +
./configure --prefix="$PREFIX"
  +
make
  +
make install
  +
</pre>
 
==Using voikkospell with apertium Stream Format==
 
==Using voikkospell with apertium Stream Format==
 
[[Category:Spellchecking]]
 
[[Category:Spellchecking]]

Revision as of 21:36, 14 December 2015

Installation

m5w/corevoikko, a clone of corevoikko, supports apertium stream format.

To clone it, execute the following command:

git clone https://github.com/m5w/corevoikko.git corevoikko

To install the fork's voikkospell, install its libvoikko, which has the same dependencies as [1]. After installing them, execute the following commands:

cd corevoikko/libvoikko
./configure
make
sudo make install

If you do not have root privileges or would like to specify where to install libvoikko, execute the following instead: (Otherwise, you are finished with installation.)

cd corevoikko/libvoikko
# e.g.
PREFIX="$HOME/install/corevoikko"
./configure --prefix="$PREFIX"
make
make install

Using voikkospell with apertium Stream Format