I am trying to set a path for LD_LIBRARY_PATH.
I tried to execute:
export LD_LIBRARY_PATH=/usr/local/lib
Then I opened the bash_profile file:
vi ~/.bash_profile
and added:
LD_LIBRARY_PATH=/usr/local/lib
export LD_LIBRARY_PATH
Now if I restart the terminal, typing echo $LD_LIBRARY_PATH displays no result.
How do I set this path permanently?