Installing GNU parallel without root permission

后端 未结 5 1824
逝去的感伤
逝去的感伤 2021-01-21 05:08

EDIT 2

After trying to run parallel, I am getting the following on the terminal when I run both parallel and by the source /homedtic/

相关标签:
5条回答
  • 2021-01-21 05:44

    You might consider using linuxbrew (http://linuxbrew.sh)

    brew install parallel
    
    0 讨论(0)
  • 2021-01-21 05:52

    The script http://git.savannah.gnu.org/cgit/parallel.git/tree/10seconds_install first tries an install requiring root; then a personal installation and if that fails too: a minimal installation.

    It might just work for you out of the box, and if not, then it might serve as inspiration.

    0 讨论(0)
  • 2021-01-21 05:54

    This did it for me, without root access:

    (wget pi.dk/3 -qO - ||  curl pi.dk/3/) | bash
    

    See this link.

    0 讨论(0)
  • 2021-01-21 05:57
    ./configure --prefix=<target>
    

    This will make the installation in <target>/bin, <target>/lib etc.; just do the make install as usual.

    Choose a <target> you have access to (something in ${HOME} if need be), and adjust your PATH to include <target>/bin (and, perhaps, MANPATH to include <target>/share/man so you get access to the man pages as well).

    0 讨论(0)
  • 2021-01-21 06:02

    If you have conda, conda install parallel is also a one-line solution.

    0 讨论(0)
提交回复
热议问题