Upgrading
(→Maybe do a backup) |
(→Upgrading GeoQO) |
||
| Line 1: | Line 1: | ||
| − | == | + | == Prepare for an upgrade of GeoQO== |
These instructions assume you have already [[Installation Help|installed]] GeoQO before and merely want to upgrade to the latest and greatest (currently version {{VER}}). | These instructions assume you have already [[Installation Help|installed]] GeoQO before and merely want to upgrade to the latest and greatest (currently version {{VER}}). | ||
| Line 8: | Line 8: | ||
cp $[[HOME]]/.geoqo/dbs/geoqo $[[HOME]]/.geoqo/dbs/geoqo.bak | cp $[[HOME]]/.geoqo/dbs/geoqo $[[HOME]]/.geoqo/dbs/geoqo.bak | ||
| + | |||
| + | == Upgrade GeoQO == | ||
=== Windows Instructions === | === Windows Instructions === | ||
| Line 13: | Line 15: | ||
Double click on the '''INSTALL-WINDOWS.pl''' icon and let it do everything for you. You can stop reading this page after it finishes. | Double click on the '''INSTALL-WINDOWS.pl''' icon and let it do everything for you. You can stop reading this page after it finishes. | ||
| − | === Extracting the source === | + | === Other Operating === |
| + | |||
| + | ==== Extracting the source ==== | ||
Then, get the new source package and extract it (in this example, we'll assume command line zip): | Then, get the new source package and extract it (in this example, we'll assume command line zip): | ||
| Line 19: | Line 23: | ||
unzip geoqo-{{VER}}.zip | unzip geoqo-{{VER}}.zip | ||
| − | === Checking for new needed modules === | + | ==== Checking for new needed modules ==== |
It's possible that new perl modules are needed or may be desired in order to support some newer features available in the new version. You can check this by running the | It's possible that new perl modules are needed or may be desired in order to support some newer features available in the new version. You can check this by running the | ||
| Line 28: | Line 32: | ||
And following it's instructions (or if you're on windows you may wish to use PPM to search for some of those modules). | And following it's instructions (or if you're on windows you may wish to use PPM to search for some of those modules). | ||
| − | === Building and installing === | + | ==== Building and installing ==== |
Then build it: | Then build it: | ||
Revision as of 03:41, 10 September 2007
Contents |
Prepare for an upgrade of GeoQO
These instructions assume you have already installed GeoQO before and merely want to upgrade to the latest and greatest (currently version 1.11).
Maybe do a backup
If you need to upgrade geoqo from a previous version, you may want to first back up your default database:
cp $HOME/.geoqo/dbs/geoqo $HOME/.geoqo/dbs/geoqo.bak
Upgrade GeoQO
Windows Instructions
Double click on the INSTALL-WINDOWS.pl icon and let it do everything for you. You can stop reading this page after it finishes.
Other Operating
Extracting the source
Then, get the new source package and extract it (in this example, we'll assume command line zip):
unzip geoqo-1.11.zip
Checking for new needed modules
It's possible that new perl modules are needed or may be desired in order to support some newer features available in the new version. You can check this by running the check-prerequisites.pl script:
perl check-prerequisites.pl
And following it's instructions (or if you're on windows you may wish to use PPM to search for some of those modules).
Building and installing
Then build it:
cd geoqo-1.11 perl Makefile.PL make make install
On windows, you need to use nmake instead:
cd geoqo-1.11 perl Makefile.PL nmake nmake install