Skip to content

Commit 2463f17

Browse files
committed
Add instruction for missing path
1 parent d65dd5f commit 2463f17

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,27 +52,27 @@ should return something similar to::
5252
Installation
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

0 commit comments

Comments
 (0)