감동, 마음이 움직이는 것

[Installing software] 본문

Tips (Utility, Computer Language, and etc.)

[Installing software]

Struggler J. 2017. 6. 29. 22:04

Install software in local directory


[1] download source files 

using the link: wget “address”


[2] ./configure —prefix=/home/hjp/.local(which is the path to lib and bin folder)


[3] make


[4] make install


[5] connect the path using .bashrc

PATH=“$HOME/.local/:$HOME/.local/bin:$PATH”

export PATH

[6] source .bashrc (before you use it, just recall the .bashrc to update the modifications.