Changes between Version 28 and Version 29 of WikiStart
- Timestamp:
- Oct 2, 2006 3:34:12 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v28 v29 30 30 The '''very short version of the download and installation instructions''' for UNIX-like system (including Linux and Cygwin) is this: 31 31 32 1. Get the code via subversion using the following command (where {{{Pkg}}} needs to be replaced by the name of the COIN package you want to install, ''e.g.'', {{{Cbc}}}) 32 1. Get the code for the desired package {{{Pkg}}} (where {{{Pkg}}} needs to be replaced by the name of the COIN package you want to install) and for a releases {{{x.y.z}}} (again, {{{x.y.z}}} is to be replaced by the version number string, such as {{{2.4.1}}}): 33 34 1.1 ''As tarball'': Download the tarball {{{Pgk-x.y.z.tgz}}} from the [http://www.coin-or.org/Tarballs/ COIN Tarballs site] and extract it, for example with 33 35 {{{ 34 svn co https://projects.coin-or.org/svn/Pkg/trunk Coin-Pkg 36 gunzip Pgk-x.y.z.tgz 37 tar xvf Pgk-x.y.z.tar 35 38 }}} 36 1. Go into the downloaded directory and run the configuration script 39 40 1.1 ''Via subversion'': Go into the directory where you want to have a subdirectory with the downloaded source code and type 37 41 {{{ 38 cd Coin-Pkg; ./configure 42 svn co https://projects.coin-or.org/svn/Pkg/releases/x.y.z Pkg-x.y.z 43 }}} 44 1. Go into the downloaded directory, create a subdirectory for the compiled code, and run the configuration script 45 {{{ 46 cd Pkg-x.y.z 47 mkdir build 48 cd build 49 ./configure 39 50 }}} 40 51 Make sure the last line of output says that the configuration was successful. … … 60 71 === Detailed Information === 61 72 62 The above commands might work in most cases, but it is probably a good idea to read the information on the home page for the desired COIN project, and to learn more using the links below.73 The above commands work in most cases if you don't have particular requirements, but it is probably a good idea to read the information on the home page for the desired COIN project, and to learn more using the links below. 63 74 64 75 * [wiki:user-download Obtaining the source code]