Installing Open Foris Geospatial Toolkit
From Open Foris Wiki
Pekkarinen (Talk | contribs) |
|||
Line 6: | Line 6: | ||
#First make sure that you have installed all the necessary gdal and gsl libraries and tools. If you do not have them then download and install them by using following commands: | #First make sure that you have installed all the necessary gdal and gsl libraries and tools. If you do not have them then download and install them by using following commands: | ||
- | ##<pre>sudo apt-get install gcc | + | ##<pre>sudo apt-get install gcc g++ gdal-bin libgdal1-dev libgsl0-dev libgsl0ldbl libproj-dev python-gdal python-scipy python-tk python-qt4 perl</prE> |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
#Then download the OpenForisToolkit.run installer | #Then download the OpenForisToolkit.run installer | ||
##<pre>wget http://foris.fao.org/static/geospatialtoolkit/releases/OpenForisToolkit.run</pre> | ##<pre>wget http://foris.fao.org/static/geospatialtoolkit/releases/OpenForisToolkit.run</pre> | ||
Line 42: | Line 33: | ||
==Windows Cygwin installation== | ==Windows Cygwin installation== | ||
- | + | '''WARNING''' | |
- | + | '''ADMINISTRATIVE PRIVILEGES ARE REQUIRED''' IN ORDER TO PERFORM THE INSTALLATIONS AND EVENTUALLY '''ALSO TO USE THE APPLICATION'''. | |
+ | USERS WITH STANDARD PRIVILEGES MAY WANT TO CREATE A VIRTUAL MACHINE WITH [http://www.virtualbox.org VIRTUAL BOX] AND [http://www.ubuntu.com UBUNTU 12.04] WHERE ADMINISTRATIVE RIGHTS WILL BE REQUESTED ONLY FOR THE INSTALLATION. | ||
- | Download from the [http://trac.osgeo.org/gdal/wiki/DownloadSource | + | The [http://www.cygwin.com/ Cygwin] project provides a Linux terminal in Windows. |
+ | # Download either [http://cygwin.com/setup-x86.exe setup-x86.exe] or [http://cygwin.com/setup-x86_64.exe setup-x86_64.exe] | ||
+ | # Run it as admin (right-click on setup.exe and Run as [admin credentials]) | ||
+ | # Click Next | ||
+ | # Choose Install from Internet | ||
+ | # You may leave the destination folder as C:\cygwin (for All Users) | ||
+ | # Choose any local package directory (it will be used for future storage of installers) | ||
+ | # Select Direct Connection (unless your connection requirements are different) | ||
+ | # Choose a download site, basing on site country domain or known availability, or add your own preferite | ||
+ | # If it is a first time installation of CygWin, acknowledge the warning with OK or click on 'Skip' to activate them (if you already have CygWin installed, you could skip the installation or check how the installation may affect the existing version) | ||
+ | # During the installation, ensure to flag the following options under the Bin column (use the Search field for a faster retrieval of the needed components: type the package name in the field, expand the correct group, search for the package and click on "Skip" to see it changed to the version number) | ||
+ | ## under Devel | ||
+ | ### ''gcc-g++'' | ||
+ | ### ''make'' | ||
+ | ## under Net | ||
+ | ### ''wget'' | ||
+ | ## under Libs | ||
+ | ### ''gsl'' | ||
+ | ### ''gsl-apps'' | ||
+ | ### ''gsl-devel'' | ||
+ | ### ''gsl-doc'' | ||
+ | # Click Next | ||
+ | # Flag "Select required packages" and click Next to resolve the related dependencies | ||
+ | # Click Next | ||
+ | # The installation may take some time | ||
+ | # Choose whether or not to create a Desktop and a Start Menu icon | ||
+ | # Click Finish | ||
+ | |||
+ | To compile the Open Foris Geospatial Toolkit you need to compile GDAL manually. | ||
+ | # Download the installer from the [http://trac.osgeo.org/gdal/wiki/DownloadSource gdal official repository] (e.g. [http://download.osgeo.org/gdal/1.10.1/gdal-1.10.1.tar.gz gdal-1.10.1.tar.gz]) | ||
+ | # Save it in your CygWin home folder (e.g. ''C:\cygwin\home'' or ''C:\cygwin64\home'') or in another destination of your choice | ||
+ | # Run CygWin ('''NOTE: FOR INSTALLATION, RUN CYGWIN AS ADMIN; Right click on Start > (All) Programs > CygWin > CygWin Terminal and Run as [admin credentials]''') | ||
+ | # Install GDAL using the following commands (the last two can take some time to complete) | ||
<pre> | <pre> | ||
- | cd | + | cd [folder containing gdal-1.10.1.tar.gz] (e.g. cd C:/cygwin/home, mind the simple slash) |
- | tar - | + | tar -xvzf gdal-1.10.1.tar.gz |
- | cd gdal-1. | + | cd gdal-1.10.1 |
./configure | ./configure | ||
make | make | ||
Line 56: | Line 80: | ||
</pre> | </pre> | ||
- | + | Now you can install OpenForis. Still in CygWin, run the following commands: | |
- | + | <pre> | |
- | + | wget http://foris.fao.org/static/geospatialtoolkit/releases/OpenForisToolkit.run | |
- | + | chmod u+x OpenForisToolkit.run | |
- | <pre>wget http://foris.fao.org/static/geospatialtoolkit/ | + | ./OpenForisToolkit.run |
- | + | </pre> | |
- | + | ||
== Get Info, Update, Unistall Open Foris Toolkit == | == Get Info, Update, Unistall Open Foris Toolkit == | ||
#After the first installation, you can check the '''current version info''' with the command <pre>oft-info.bash</pre> | #After the first installation, you can check the '''current version info''' with the command <pre>oft-info.bash</pre> | ||
- | #and '''update''' to the latest version using command <pre>oft-update.bash</pre> | + | #and '''update''' to the latest version using command <pre>sudo oft-update.bash</pre> |
- | #You can also '''uninstall''' all the tools. To do that, enter the command:<pre>oft-uninstall.bash</pre> | + | #You can also '''uninstall''' all the tools. To do that, enter the command:<pre>sudo oft-uninstall.bash</pre> |
+ | # In case you do not need further CygWin packages, you can delete the folder created at step 6 | ||
----- | ----- |