Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install program only for a local user in Linux?

Is there a simple way of installing a program in linux only for a single user. I need to install Biopython for only my log-in. I dont have root privileges on the system.

like image 953
Sam Avatar asked Mar 09 '11 23:03

Sam


2 Answers

Just build the project as usual, but configure the install directory to be either /home/usr/bin or /usr/local/bin.

like image 136
J. Taylor Avatar answered Sep 27 '22 21:09

J. Taylor


You can always download and compile the program in your home directory (in ~/apps), and then just invoke the executable (possibly add ~/apps/specificapp/bin/specificapp to your PATH). Don't forget to chmod it so it is executable.

like image 37
hvgotcodes Avatar answered Sep 27 '22 21:09

hvgotcodes