How to install the program only for local user in Linux?

Is there an easy way to install a program on Linux for only one user. I need to install Biopython just for my login. I do not have root privileges on the system.

+4
source share
2 answers

Just create the project as usual, but configure the installation directory as / home / usr / bin or / usr / local / bin.

+1
source

You can always download and compile the program in your home directory (in ~ / apps), and then just call the executable file (maybe add ~ / apps / specificapp / bin / specificapp to your PATH). Remember to make chmod execute.

+1
source

Source: https://habr.com/ru/post/1343083/


All Articles