Difference between revisions of "User:Violet"

From Apertium
Jump to navigation Jump to search
Line 34: Line 34:
 
9. The Apertium setup will be completed and you may click "Finish" to close the process.
 
9. The Apertium setup will be completed and you may click "Finish" to close the process.
   
=== Quick test that it works ===
+
=== A Quick Test that it Works ===
   
 
You should now have the core/engine of Apertium installed (but no language pairs yet).
 
You should now have the core/engine of Apertium installed (but no language pairs yet).
Line 44: Line 44:
 
</pre>
 
</pre>
   
  +
and some more text. If you get a "command not found error", you must set your path to find the folder where your apertium command is. Type in:
and some more text like that. If not, something probably went wrong...
 
  +
<pre>
 
  +
export PATH=/home/apertium-install/apertium/apertium
If this happens, go to the the "Apertium" folder in your Program Files from the start menu and click "Update and recompile Apertium."
 
  +
</pre>
  +
and then you may type "apertium" to see the Usage instructions above.
   
 
== Install Apertium language pairs ==
 
== Install Apertium language pairs ==

Revision as of 01:38, 23 November 2011

Install Apertium

1. Download the installer from Sourceforge. Run the executable file and read the license argreement of the Apertium installer (most parts are GNU/GPL). Click "I Agree" to continue.

Apertium guide for Windows users Apertium 1.png

2. Select the components you want to install. For unexperienced users, all of them are recommended. Click "Next" to go to next page.

Apertium guide for Windows users Apertium 2.png

3. Choose the desired installation location. A location without special characters (eg. a space or non-English characters) is recommended.

Apertium guide for Windows users Apertium 3.png

4. Cygwin installer will appear. Choose the nearest mirror and continue.

Apertium guide for Windows users Apertium 4.png

5. You will be asked to select Cygwin packages. It is okay to leave them all unmarked. Click "Next" to continue.

Apertium guide for Windows users Apertium 5.png

6. The installer may list packages which are required to install to resolve dependency problems. Click "Next" to continue.

Apertium guide for Windows users Apertium 6.png

7. An alert box may appear if this is the first time Apertium is being installed. Click "OK."

Apertium guide for Windows users Apertium 7.png

8. Cygwin setup will give you the option to create desktop icon and a shortcut in the Start Menu. The installer will create a Start Menu shortcut for Aperitum so there is no need to select them.

Apertium guide for Windows users Apertium 8.png

9. The Apertium setup will be completed and you may click "Finish" to close the process.

A Quick Test that it Works

You should now have the core/engine of Apertium installed (but no language pairs yet).

Upon installation, start Cygwin with Apertium. If you did not click the checkbox to run Cygwin after clicking "Finish," you may find the "Cygwin Bash Shell" in the Apertium folder in your Program Files in the start menu. The black "Cygwin" terminal window should be visible. If you try typing "apertium" and enter, you should see

USAGE: apertium [-d datadir] [-f format] [-u] <direction> [in [out]]

and some more text. If you get a "command not found error", you must set your path to find the folder where your apertium command is. Type in:

export PATH=/home/apertium-install/apertium/apertium

and then you may type "apertium" to see the Usage instructions above.

Install Apertium language pairs

1. Download the language pair installer from Sourceforge. Run and read the license argreement of Apertium installer. Click "I Agree" to continue.

Apertium Language Pairs Installer 1.png

2. Select 'Minimal' as the type to install and then select the language pairs you would like. The Main Apertium Wiki Page shows the possible language pairs. Click "Next" to continue. Full installation (selection every language pair) takes a few hours to install and is not recommended for normal users.

Apertium Language Pairs Installer 2.png

3. Select the location you would like the language pair installed and click "Next". The location must be the same as where Apertium was installed.

Apertium Language Pairs Installer 3.png

4. Allow the Cygnwin Setup to install the language pair and click "Finish" to finish the installation process.

Apertium Language Pairs Installer 4.png

Quick test that it works

After the installation, the black "Cygwin" terminal window should be visible (you can also find a link to this in your Start menu under "Apertium").

If you type "apertium -l" (without the quotes) and enter, you should see a list of the codes of the installed language pairs. If this lists es-ca, you can try typing "echo hola mundo | apertium es-ca" (without the quotes), you should see "hola món"; similarly for other language pairs.

Translating a file

Example: translating an HTML file from Asturian to Spanish:

apertium -f html ast-es $(cygpath c:\\mystuff\\asturian_input.html) $(cygpath c:\\mystuff\\spanish_output.html)

(The cygpath stuff is unfortunately needed to get to a Windows file path from Cygwin. A Windows Power User could probably write a script to make this a right-click menu option.)

Please note that backslash needs to be escaped, by typing it twice!

Note : It is also possible to use UNIX syntax for paths replacing every \ of Windows path by a / . I don't know if it resolves the problem of cygpath. Bech 09:02, 11 September 2011 (UTC)

Developing further on a language pair

The installer puts the language data inside the Cygwin directory /home/apertium-install/languages, which is really located within the Windows directory C:\Apertium\home\apertium-install\languages. In there you'll find directories for all the installed language pairs, and can change language data and recompile etc. as described in Apertium New Language Pair HOWTO

or was it /home/apertium-install/...?