install software in linux as a non root user
- by Aki
Hi, What is the best way to install software in a linux machine if you dont have root permissions. I know that we can use few variables like PKG_CONFIG_PATH and switches like --prefix with configure to get a software installed in a local directory, but sometimes when there are recursive dependencies it is becoming tough for me to install all the packages manually. Is there a better automated way?
Update: What i meant by recursive dependencies is: to install package A, i should install package B, which in turn requires package C to be installed