Jual alat otomatis

Senin, 10 Agustus 2015

install pyload di raspberry

Install pyLoad Raspberry Pi

Update your repositories
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
wget http://get.pyload.org/get/ubuntu-cli
Install the pyLoad package with the dpkg command
sudo dpkg -i ubuntu-cli
You can now remove the pyLoad installation package
rm ubuntu-cli
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 Spidermonkey (source) with this command
sudo apt-get install libmozjs-dev -y
You may get an error Cannot install the JS source:Package libmozjs-dev is not available, but is referred to by another package
Then install Spidermonkey with this command instead
sudo apt-get install libmozjs* -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
If you ever want to remove pyLoad you can do so with this command
sudo dpkg -r pyload-cli