如何在 Linux 中仅为本地用户安装程序?
有没有一种简单的方法可以在 Linux 中为单个用户安装程序。我只需要为我的登录安装 Biopython。我没有系统的 root 权限。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需照常构建项目,但将安装目录配置为 /home/usr/bin 或 /usr/local/bin。
Just build the project as usual, but configure the install directory to be either /home/usr/bin or /usr/local/bin.
您始终可以在主目录(在 ~/apps 中)下载并编译程序,然后只需调用可执行文件(可能将 ~/apps/specicapp/bin/specicapp 添加到您的 PATH 中)。不要忘记 chmod 它以便它是可执行的。
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.
虽然是一个老问题,但以下是如何在不使用 sudo 的情况下安装到本地用户 bin 目录中的方法:
Although an old question, here's how to install into local user bin directory, without using sudo: