1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#############################################################
## ##
## Copyright (c) 2007-2017 by The University of Queensland ##
## Centre for Geoscience Computing ##
## http://earth.uq.edu.au/centre-geoscience-computing ##
## ##
## Primary Business: Brisbane, Queensland, Australia ##
## Licensed under the Open Software License version 3.0 ##
## http://www.apache.org/licenses/LICENSE-2.0 ##
## ##
#############################################################
INSTALLATION
The following instructions describe how to install GenGeo on an Ubuntu distribution of Linux.
1/ Download the GenGeo source code from the Bazaar repository:
bzr branch lp:esys-particle/gengeo gengeo
cd gengeo/build
2/ Create a configure script for your distribution:
./autogen.sh
3/ Create the Makefiles for GenGeo:
./configure
If you are using gcc-4.3 or later, use the following configure command:
./configure CCFLAGS="-fpermissive" CXXFLAGS="-fpermissive"
To install in a location other than the default /usr/local, include the switch "--prefix=" followed by the location in which you want to install the libraries; for example:
./configure --prefix=/home/username/gengeo/install
4/ Build GenGeo:
make
5/ Install the GenGeo libraries:
sudo make install
6/ Update your environment variables (replace "2.6" with your version of Python, and replace "dist-packages" with "site-packages" if this is where your version of Python wants to install the GenGeo python scripts):
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
export PYTHONPATH=/usr/local/lib/python2.6/dist-packages/gengeo:$PYTHONPATH
If you have installed in another location, e.g., /home/username/gengeo/install (replace 2.6 with your version of python):
export LD_LIBRARY_PATH=/home/myname/gengeo/install/lib:$LD_LIBRARY_PATH
export PYTHONPATH=/home/myname/gengeo/install/lib/python2.6/site-packages/gengeo:$PYTHONPATH
Set these variables permanently by adding the lines to your shell's initialization file in your home directory. For example, if you are using the Bourne-Again Shell (bash), then add the lines to ~/.bashrc.
REINSTALLATION
To rebuild and reinstall the source code from a clean distribution:
sudo make uninstall
make distclean
./configure /* Add other arguments as needed from step 3 above. */
make
sudo make install
|