How to set the environmental variable LD_LIBRARY_PATH in linux

后端 未结 10 1687
独厮守ぢ
独厮守ぢ 2020-11-22 11:11

I have first executed the command: export LD_LIBRARY_PATH=/usr/local/lib

Then I have opened .bash_profile file: vi ~/.bash_profile

10条回答
  •  执笔经年
    2020-11-22 11:44

    Keep the previous path, don't overwrite it:

    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/your/custom/path/
    

    You can add it to your ~/.bashrc:

    echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/your/custom/path/' >> ~/.bashrc
    

提交回复
热议问题