Skip to content

Commit e90dd97

Browse files
committed
Added an important note to the documentation.
1 parent 0dc15f2 commit e90dd97

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

docs/install.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,15 @@ If these are already installed in your system, feel free to comment the script s
4242
```
4343
sudo apt-get install cython python-numpy python-scipy gsl-bin
4444
```
45+
46+
###Important note:
47+
48+
If you are relying on the GNU Scientific Library that was installed using the `install_faststructure` script, you will need to make your system aware of where these libraries are.
49+
for that, add the following to your `~/.bashrc`:
50+
51+
```bash
52+
LD_LIBRARY_PATH=$install_dir/lib
53+
export LD_LIBRARY_PATH
54+
```
55+
56+
Where `$install_dir` is the directory defined in `install_faststructure`.

helper_scripts/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ Faststructure depends on a few software packages:
2929

3030
If these are already installed in your system, feel free to comment the script section that will install them. Otherwise it will install a new local copy of these programs.
3131

32+
###Important note:
33+
34+
If you are relying on the GNU Scientific Library that was locally installed, you will need to make your system aware of where these libraries are.
35+
for that, add the following to your `~/.bashrc`:
36+
37+
```bash
38+
LD_LIBRARY_PATH=$install_dir/lib
39+
export LD_LIBRARY_PATH
40+
```
41+
42+
Where `$install_dir` is the directory defined in `install_faststructure`.
3243

3344
##License
45+
3446
GPL V3

0 commit comments

Comments
 (0)