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::
5252Installation
5353------------
5454
55- Clone the repository and compile the Fortran code::
55+ Clone the repository, compile the Fortran code and install the executables ::
5656
5757 $ git clone https://github.com/Axelrod-Python/TourExec.git
5858 $ cd TourExec
5959 $ make
60+ $ make install
6061
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::
6363
64- $ bin/ tourexec
64+ $ tourexec
6565
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::
6867
69- $ make install
68+ $ error while loading shared libraries: libstrategies.so:
7069
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::
7272
73- $ tourexec
73+ $ export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:/usr/local/lib
7474
75- To remove both the executable and the libary from your machine, use::
75+ To remove both the executables from your machine, use::
7676
7777 $ make uninstall
7878
You can’t perform that action at this time.
0 commit comments