Difference between revisions of "Minimal installation from SVN"

From Apertium
Jump to navigation Jump to search
 
(23 intermediate revisions by 8 users not shown)
Line 1: Line 1:
  +
[[Installation minimale depuis SVN|En français]]
{{TOCD}}
 
  +
{{Github-migration-check}}
This guide shows you how to download, configure, compile and install core apertium packages and language data. It assumes you've already installed the '''prerequisites''' for your system – if you have not, see the system-specific guides under [[Installation]]. If you run into trouble, see [[Installation troubleshooting]].
 
  +
<div style="background-color:pink; text-align:center; line-height:2.5; border: 1px solid crimson;">This page is deprecated. </div>
   
  +
The information which was here is split across other pages.
''Note: some pairs require more than the four packages describe here. See the bottom of this page if your language pair complains about lacking CG, HFST or language data like <code>apertium-rus</code>.''
 
   
  +
The page contained,
==Installing apertium and a language pair==
 
   
  +
* How to compile Apertium core. For this, please see [[Install Apertium core by compiling]]
===Download===
 
For most language pairs, these are the packages you need:
 
   
  +
* How to create new, or compile exisitng, language builds. For a new or mixed pair, see [[How to bootstrap a new pair]]. For existing pairs, see [[Install language data by compiling]],
* lttoolbox
 
* apertium
 
* apertium-lex-tools
 
* the language pair(s) your are interested in
 
   
  +
* Details about the HFST and CG modules. Please see [[Installation of grammar libraries]]
Here are the commands if you would like the Esperanto-English pair:
 
<pre>
 
svn checkout https://svn.code.sf.net/p/apertium/svn/trunk/lttoolbox
 
svn checkout https://svn.code.sf.net/p/apertium/svn/trunk/apertium
 
svn checkout https://svn.code.sf.net/p/apertium/svn/trunk/apertium-lex-tools
 
svn checkout https://svn.code.sf.net/p/apertium/svn/trunk/apertium-eo-en
 
</pre>
 
   
  +
Or start from the information root at [[Installation]]?
''Note: please make sure that the directory where you put these files (i.e. where you run the svn command) doesn't contain spaces and other special characters. That may cause errors while compiling/linking.''
 
 
If you want another pair than eo-en, only the last line needs changing. To see the available 'released' language pairs, go to https://svn.code.sf.net/p/apertium/svn/trunk/ (pairs which are in development are in the incubator/nursery/staging subdirectories of https://svn.code.sf.net/p/apertium/svn/).
 
 
If a language pair has more dependencies than the three shown above, the <code>README</code> should mention it (and the <code>autogen.sh</code> step should fail with a message about what is missing). The bottom of this page has pointers on how to install other possible dependencies.
 
 
===Set up environment===
 
By default, Apertium is installed under the directory <code>/usr/local</code>, which requires root (sudo) access when installing. If that's fine with you, begin by pasting these lines into your terminal:
 
<pre>
 
LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH}
 
export LD_LIBRARY_PATH
 
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:${PKG_CONFIG_PATH}
 
export PKG_CONFIG_PATH
 
</pre>
 
You should also put those lines in your ~/.bashrc so you don't have to paste them into every terminal you open.
 
 
However, if you want it installed somewhere else or don't want to install it as root, instead paste these lines into your terminal:
 
<pre>
 
PREFIX=$HOME/local # or wherever you want apertium stuff installed
 
LD_LIBRARY_PATH=$PREFIX/lib:${LD_LIBRARY_PATH}
 
export LD_LIBRARY_PATH
 
PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:${PKG_CONFIG_PATH}
 
export PKG_CONFIG_PATH
 
</pre>
 
You should also put those lines in your ~/.bashrc so you don't have to paste them into every terminal you open.
 
 
===Configure, build and install===
 
The next step is to configure, build and install each of the modules you checked out, in this order:
 
# <code>lttoolbox</code>
 
# <code>apertium</code>
 
# <code>apertium-lex-tools</code>
 
# the language pair (e.g. <code>apertium-eo-en</code>)
 
 
<code>cd</code> to each of the directories before you run the the commands shown below.
 
 
If you didn't specify <code>$PREFIX</code> above, or don't know what this means, then do this in each directory:
 
<pre>
 
./autogen.sh
 
make
 
sudo make install
 
sudo ldconfig
 
</pre>
 
 
If you specified a <code>$PREFIX</code> (e.g. to avoid installing as root), then do this in each directory:
 
<pre>
 
./autogen.sh --prefix=$PREFIX
 
make
 
make install
 
ldconfig
 
</pre>
 
 
 
(If you're on a Mac, you don't need to do ldconfig, don't worry that it fails.)
 
 
 
If you had any trouble, see [[Installation troubleshooting]].
 
 
===Test===
 
Now test that it works. The command <code>apertium -l</code> should show a list of translation directions, of the form "from-to". Pick one, and do
 
<pre>
 
echo 'This is a test sentence.' | apertium from-to
 
</pre>
 
replacing from-to with the direction you want.
 
 
You can see development translation modes if you do <code>ls modes</code> from the language pair directory. If you're in the language pair directory, and there is e.g. a file <code>modes/eo-en-tagger.mode</code>, you can run the translator up until the tagger by typing
 
<pre>
 
echo 'This is a test sentence.' | apertium -d . eo-en-tagger
 
</pre>
 
 
The <code>-d .</code> means "use the language data in this directory", and is useful if you don't want to type <code>make install</code> all the time.
 
 
==For language pairs that depend on monolingual packages (apertium-XYZ) ==
 
Many language pairs now have their monolingual data in separate packages (so that when several pairs have one language in common, we don't have to duplicate the data). If a pair depends on a monolingual package, the README should say so, and also the <code>autogen.sh</code> step should fail with a message like <pre>No package 'apertium-XYZ' found</pre> (where XYZ is some language code).
 
 
Monolingual packages are typically kept in https://svn.code.sf.net/p/apertium/svn/languages/ (more info at [[Languages]]) and compiled like the other packages.
 
If a monolingual package installs a dictionary, the language pair uses that installed dictionary when compiling. However, to avoid having to type <code>make install</code> in the monolingual directory after every change there, you can tell the language pair the exact location to the monolingual package, and it will use the dictionary from that directory instead of the installed one. This is recommended for developers.
 
 
Imagine the language pair is called apertium-fie-bar, and it depends on the monolingual packages apertium-fie and apertium-bar. Assuming we have already installed lttoolbox, apertium and apertium-lex-tools as shown above, these would be the steps to download, configure and install apertium-fie-bar:
 
<pre>
 
svn checkout https://svn.code.sf.net/p/apertium/svn/trunk/apertium-fie-bar
 
svn checkout https://svn.code.sf.net/p/apertium/svn/languages/apertium-fie
 
svn checkout https://svn.code.sf.net/p/apertium/svn/languages/apertium-bar
 
 
cd apertium-fie
 
./autogen.sh
 
make
 
cd ..
 
 
cd apertium-bar
 
./autogen.sh
 
make
 
cd ..
 
 
cd apertium-fie-bar
 
./autogen.sh --with-lang1=../apertium-fie --with-lang2=../apertium-bar
 
make
 
</pre>
 
The <code>--with-lang1</code> is used to give the path to where you checked out apertium-fie. If you do <code>./autogen.sh --help</code>, it will tell you the possible <code>--with-langN</code> options and what they correspond to.
 
 
The process is similar for other language pairs that use monolingual packages.
 
 
==For language pairs that use CG (vislcg3 / cg-proc / cg-comp) ==
 
Many language pairs now use [[Constraint Grammar]] (e.g. Macedonian→English, Breton→French, Nynorsk-Bokmål, …). For these, you need <code>vislcg3</code> beforehand. See [[Vislcg3#Installing_VISL_CG3]] for installation (use <code>./cmake.sh -DCMAKE_INSTALL_PREFIX=<prefix></code> if you're installing to a prefix).
 
 
Note that you have to have [http://site.icu-project.org/ ICU] installed beforehand (available through most GNU/Linux package managers, in Arch Linux as <code>icu</code>, in Debian/Ubuntu as <code>libicu-dev</code>, in Macports as <code>icu</code>).
 
 
 
==For language pairs that use HFST (hfst-proc / hfst-lexc / hfst-twolc)==
 
Many language pairs now use HFST (e.g. the Turkic and Saami ones). For these, you need <code>hfst</code> and <code>foma</code> beforehand. Follow the installation guides first for [[Foma]], then [[HFST]].
 
 
 
==See also==
 
* [[Installation]] – prerequisites and specific info for many different operating systems
 
* [[Installation Troubleshooting]]
 
 
 
[[Category:Documentation]]
 
[[Category:Installation]]
 
[[Category:Documentation in English]]
 

Latest revision as of 22:05, 7 March 2018

En français

WARNING

This page is out of date as a result of the migration to GitHub. Please update this page with new documentation and remove this warning. If you are unsure how to proceed, please contact the GitHub migration team.

This page is deprecated.

The information which was here is split across other pages.

The page contained,

Or start from the information root at Installation?