File size: 670 Bytes
80a72c3 | 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 | In order to install stride on a Unix/Linux system with gcc follow these steps. Other compilers need slight modifications of the Makefile.
Download the stride stand-alone program source code
Create a directory wherever/stride and copy the tar ball there
Unpack the tar ball:
```
tar -zxf stride.tgz
```
Compile stride
```
make
```
Now you have a binary file stride in your directory, you can copy it to /usr/local/bin or add the current directory to your path to use it system-wide
Set `STRIDE_EXE` to this executable, or use the packaged default at `scripts/stride/stride`.
Stride source code downloaded from on 2023-05-23:
http://webclu.bio.wzw.tum.de/stride/
|