pyrad icon indicating copy to clipboard operation
pyrad copied to clipboard

How to install pyrad without root access?

Open uloeber opened this issue 8 years ago • 2 comments

HI, is there a way to install pyrad without root access? If yes, how to do it??

uloeber avatar Dec 03 '15 12:12 uloeber

Try this:

python2 setup.py install --user

This will install pyrad under ~/.local/

You may wish to add the binary location to your $PATH:

PATH=$PATH:~/.local/bin

(add this line to your ~/.bashrc to make it permanent)

Cheers!

StuntsPT avatar Dec 03 '15 15:12 StuntsPT

I have no root access and I installed thus (and it works):

cd /the directory/you want/for/pyrad/

git clone https://github.com/dereneaton/pyrad.git

then I simply do this to use pyrad:

python ~/where/I installed/the program//pyrad/pyrad/pyRAD.py -p /my/working/directory/params.txt -s 234567

Fedster avatar Mar 15 '16 09:03 Fedster