File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -52,27 +52,27 @@ should return something similar to::
52
52
Installation
53
53
------------
54
54
55
- Clone the repository and compile the Fortran code::
55
+ Clone the repository, compile the Fortran code and install the executables ::
56
56
57
57
$ git clone https://github.com/Axelrod-Python/TourExec.git
58
58
$ cd TourExec
59
59
$ make
60
+ $ make install
60
61
61
- You should now have a `bin ` directory containing the the executable file,
62
- `tourexec `, which you can run::
62
+ You should now be able to run the tournament::
63
63
64
- $ bin/ tourexec
64
+ $ tourexec
65
65
66
- You can also chose to install the executable (and the associated library file)
67
- to standard locations on your local machine::
66
+ On linux, you may get an error similar to::
68
67
69
- $ make install
68
+ $ error while loading shared libraries: libstrategies.so:
70
69
71
- The executable can now be run without having to specify its location::
70
+ which means that you need to add a directory to your $LD_LIBRARY_PATH
71
+ environment variable::
72
72
73
- $ tourexec
73
+ $ export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:/usr/local/lib
74
74
75
- To remove both the executable and the libary from your machine, use::
75
+ To remove both the executables from your machine, use::
76
76
77
77
$ make uninstall
78
78
You can’t perform that action at this time.
0 commit comments