diff options
author | Alberto Ruiz <aruiz@um.es> | 2010-04-23 19:37:56 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2010-04-23 19:37:56 +0000 |
commit | 0ce6e74a5375b8d7ee1d95826252d8ff622f2cb4 (patch) | |
tree | cab666c674543adf0908ea5bc42ec9e9d35a9ea1 /INSTALL | |
parent | f7cbac4bb8d8fc1c4210a548674c222b691f8e9c (diff) |
app5-10, some SCC, and other minor changes
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 19 |
1 files changed, 7 insertions, 12 deletions
@@ -1,7 +1,3 @@ | |||
1 | ----------------------------------------- | ||
2 | A simple scientific library for Haskell | ||
3 | ----------------------------------------- | ||
4 | |||
5 | INSTALLATION | 1 | INSTALLATION |
6 | 2 | ||
7 | Recommended method (ok in Ubuntu/Debian systems): | 3 | Recommended method (ok in Ubuntu/Debian systems): |
@@ -15,23 +11,21 @@ INSTALLATION ON WINDOWS ---------------------------------------- | |||
15 | 11 | ||
16 | 1) Install the Haskell Platform (tested with 2009.2.0.2). | 12 | 1) Install the Haskell Platform (tested with 2009.2.0.2). |
17 | 13 | ||
18 | 2) Download and uncompress hmatrix-x.y.z.tar.gz from Hackage: | 14 | 2) Download and uncompress hmatrix from Hackage |
19 | 15 | ||
20 | http://hackage.haskell.org/package/hmatrix | 16 | > cd c:\haskell |
17 | > cabal unpack hmatrix | ||
21 | 18 | ||
22 | 3) Download and uncompress the following file into the hmatrix | 19 | 3) Download and uncompress the following file into the hmatrix |
23 | directory, into a subdirectory named gsl-lapack-windows: | 20 | directory, into a subdirectory named gsl-lapack-windows: |
24 | 21 | ||
25 | http://code.haskell.org/hmatrix/gsl-lapack-windows.zip | 22 | http://code.haskell.org/hmatrix/gsl-lapack-windows.zip |
26 | 23 | ||
27 | It contains a gsl folder, and four DLL's. | 24 | 4) Replace hmatrix.cabal by |
28 | |||
29 | 4) Edit hmatrix.cabal: | ||
30 | 25 | ||
31 | line 17: build-type: Custom | 26 | http://code.haskell.org/hmatrix/hmatrix-0.8.3.1-windows.cabal |
32 | change to: build-type: Simple | ||
33 | 27 | ||
34 | 5) Open a terminal, cd to the hmatrix folder, and run | 28 | 5) In the hmatrix folder run |
35 | 29 | ||
36 | > cabal install | 30 | > cabal install |
37 | 31 | ||
@@ -40,3 +34,4 @@ INSTALLATION ON WINDOWS ---------------------------------------- | |||
40 | > runhaskell examples\tests.hs | 34 | > runhaskell examples\tests.hs |
41 | 35 | ||
42 | NOTE: The examples using graphics do not yet work in windows. | 36 | NOTE: The examples using graphics do not yet work in windows. |
37 | |||