Osmc and download manager like Jdownloader,aria2 or pyload

i have raspberry 2 osmc latest version and i want to install on my osmc “jdownloader, aria2 or pyload” which one is good and can anyone help me how can i install it ?

which one is good?

Jdownloader
aria2
pyload

sudo apt-get update
Install the pyLoad dependencies

sudo apt-get install python-support python-crypto python-pycurl tesseract-ocr tesseract-ocr-eng python-imaging -y
Download the latest pyLoad

  #!/bin/bash  
  PYLOADVER=$(wget -q https://github.com/pyload/pyload/releases -O -  | grep -E \/tag\/ | awk -F "[\/\"]" 'NR==1 {print $7}')
    PYLOADVERDEB=$(wget -q https://github.com/pyload/pyload/releases -O -  | grep -E pyload-cli.+all.deb | awk -F "[\/\"]" 'NR==1 {print $8}')
    wget --no-check-certificate https://github.com/pyload/pyload/releases/download/$PYLOADVER/$PYLOADVERDEB

Install the pyLoad package with the dpkg command

sudo dpkg -i pyload*
You can now remove the pyLoad installation package

rm pyload*.deb
Optionally you can install OpenSSL packages for which you will need pip and the python development tools

sudo apt-get install python-pip python-dev -y
Install openssl if you want to connect to the pyLoad web interface by SSL

sudo pip install pyopenssl
If you plan to download from storage sites that have click n load you will have to install a javascript engine.

Install Rhino JS Engine with this command

sudo apt-get install rhino -y
Now run pyLoad to start setting things up

pyLoadCore -s
You can restart the pyLoad service with this command

sudo service pyload restart
pyLoad runs on port 8000 or 7227 by default

Change pyLoad startup script to autostart on boot

sudo update-rc.d pyload defaults
If you ever want to remove pyLoad you can do so with this command

sudo dpkg -r pyload-cli
You have now installed pyLoad on the Raspberry Pi for easy download management from online storage lockers.

1 Like

Its very complicated and i tried i cannot connect any easy way for beginners…

Any githup shell script or what else

perhaps you shouldnt do it then :slightly_smiling: cause if it breaks then you wont know what to do to fix it if a simple installation gives you problems.

I will really try if i dont make pls help me ;)) do u know aria2 install guide… ;))

The guide Toast posted is really not complicated.
It needs the knowledge to copy/paste commands.

There will not be any easier way to install any program on the shell.

but i tried it is not working:( i missed something

If you paste the errors here we can help you to help yourself :slight_smile:

here is my error log i am trying this

here is the guide…

http://www.htpcguides.com/install-pyload-raspberry-pi-for-download-management/

STEP 7
İ get an ERROR

osmc@osmc:~$ sudo pip install pyopenssl
Downloading/unpacking pyopenssl
Downloading pyOpenSSL-0.15.1-py2.py3-none-any.whl (102kB): 102kB downloaded
Requirement already satisfied (use --upgrade to upgrade): six>=1.5.2 in /usr/lib/python2.7/dist-packages (from pyopenssl)
Downloading/unpacking cryptography>=0.7 (from pyopenssl)
Downloading cryptography-1.2.2.tar.gz (372kB): 372kB downloaded
Running setup.py (path:/tmp/pip-build-X50Ztf/cryptography/setup.py) egg_info for package cryptography

no previously-included directories found matching 'docs/_build'
warning: no previously-included files matching '*' found under directory 'vectors'

Downloading/unpacking idna>=2.0 (from cryptography>=0.7->pyopenssl)
Downloading idna-2.0-py2.py3-none-any.whl (61kB): 61kB downloaded
Downloading/unpacking pyasn1>=0.1.8 (from cryptography>=0.7->pyopenssl)
Downloading pyasn1-0.1.9-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): setuptools>=1.0 in /usr/lib/python2.7/dist-packages (from cryptography>=0.7->pyopenssl)
Downloading/unpacking enum34 (from cryptography>=0.7->pyopenssl)
Downloading enum34-1.1.2.tar.gz (46kB): 46kB downloaded
Running setup.py (path:/tmp/pip-build-X50Ztf/enum34/setup.py) egg_info for package enum34

Downloading/unpacking ipaddress (from cryptography>=0.7->pyopenssl)
Downloading ipaddress-1.0.16-py27-none-any.whl
Downloading/unpacking cffi>=1.4.1 (from cryptography>=0.7->pyopenssl)
Downloading cffi-1.5.2.tar.gz (388kB): 388kB downloaded
Running setup.py (path:/tmp/pip-build-X50Ztf/cffi/setup.py) egg_info for package cffi
unable to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory
unable to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory

    No working compiler found, or bogus compiler options
    passed to the compiler from Python's distutils module.
    See the error messages above.
    (If they are about -mno-fused-madd and you are on OS/X 10.8,
    see http://stackoverflow.com/questions/22313407/ .)
Complete output from command python setup.py egg_info:
unable to execute 'arm-linux-gnueabihf-gcc': No such file or directory

unable to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory

No working compiler found, or bogus compiler options

passed to the compiler from Python's distutils module.

See the error messages above.

(If they are about -mno-fused-madd and you are on OS/X 10.8,

see http://stackoverflow.com/questions/22313407/ .)

Cleaning up…
Command python setup.py egg_info failed with error code 1 in /tmp/pip-build-X50Ztf/cffi
Storing debug log for failure in /root/.pip/pip.log

i guess i want to clean osmc install and retry guide :slightly_smiling:

try sudo apt-get install build-essential

sry for reopen this but i had also issues with ffi

c/_cffi_backend.c:13:17: fatal error: ffi.h: No such file or directory

to fix it use

apt-get install libffi-dev

thanks to riramar at git

Hey there, i followed now Toast guide too. I had same error when I wanted to install pyopenssl with
sudo pip install pyopenssl

this command worked for me:
sudo apt-get install python-openssl

Everything else worked like charm, thx Toast.

1 Like