<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.deathbybandaid.net/index.php?action=history&amp;feed=atom&amp;title=PyLoad</id>
	<title>PyLoad - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.deathbybandaid.net/index.php?action=history&amp;feed=atom&amp;title=PyLoad"/>
	<link rel="alternate" type="text/html" href="https://wiki.deathbybandaid.net/index.php?title=PyLoad&amp;action=history"/>
	<updated>2026-07-05T17:03:25Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://wiki.deathbybandaid.net/index.php?title=PyLoad&amp;diff=21&amp;oldid=prev</id>
		<title>Deathbybandaid: Created page with &quot; ==Installing pyLoad on Debian Stretch== Then we update our package list and install the dependencies.  &lt;nowiki&gt;  sudo apt-get update  sudo apt-get -y install git liblept5 python python-crypto python-pycurl python-imaging tesseract-ocr zip unzip python-openssl libmozjs-24-bin  &lt;/nowiki&gt; Get unrar  &lt;nowiki&gt;  wget http://www.rarlab.com/rar/unrarsrc-5.2.1.tar.gz  gunzip unrarsrc-5.2.1.tar.gz  tar xfv unrarsrc-5.2.1.tar  cd pyload  make -f makefile   install -v -m755 unrar /...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.deathbybandaid.net/index.php?title=PyLoad&amp;diff=21&amp;oldid=prev"/>
		<updated>2021-12-08T20:20:02Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot; ==Installing pyLoad on Debian Stretch== Then we update our package list and install the dependencies.  &amp;lt;nowiki&amp;gt;  sudo apt-get update  sudo apt-get -y install git liblept5 python python-crypto python-pycurl python-imaging tesseract-ocr zip unzip python-openssl libmozjs-24-bin  &amp;lt;/nowiki&amp;gt; Get unrar  &amp;lt;nowiki&amp;gt;  wget http://www.rarlab.com/rar/unrarsrc-5.2.1.tar.gz  gunzip unrarsrc-5.2.1.tar.gz  tar xfv unrarsrc-5.2.1.tar  cd pyload  make -f makefile   install -v -m755 unrar /...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
==Installing pyLoad on Debian Stretch==&lt;br /&gt;
Then we update our package list and install the dependencies.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
 sudo apt-get -y install git liblept5 python python-crypto python-pycurl python-imaging tesseract-ocr zip unzip python-openssl libmozjs-24-bin&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Get unrar&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 wget http://www.rarlab.com/rar/unrarsrc-5.2.1.tar.gz&lt;br /&gt;
 gunzip unrarsrc-5.2.1.tar.gz&lt;br /&gt;
 tar xfv unrarsrc-5.2.1.tar&lt;br /&gt;
 cd pyload&lt;br /&gt;
 make -f makefile &lt;br /&gt;
 install -v -m755 unrar /usr/bin&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
To get libmozjs running with pyLoad we need to create a symlink.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 cd /usr/bin&lt;br /&gt;
 ln -s js24 js&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
One last dependency&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 sudo apt-get install pyqt4-dev-tools&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Now we can download the current version of pyLoad and install that. We are using the current git version which is usually a bit newer that the latest release.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 cd /opt&lt;br /&gt;
 sudo git clone -b stable https://github.com/pyload/pyload.git&lt;br /&gt;
 cd pyload&lt;br /&gt;
 sudo python pyLoadCore.py&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
The last line should start the configuration wizard of pyload and create an initial setup. Just follow the on-screen instructions. If everything went well you should have a running pyLoad instance.&lt;br /&gt;
&lt;br /&gt;
If you want to start pyload at every reboot you can create a systemd service file for that. Just create a new file&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 sudo nano /etc/systemd/system/pyload.service&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
and dump the following code in there.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 [Unit]&lt;br /&gt;
 Description=Python Downloader&lt;br /&gt;
 After=network.target&lt;br /&gt;
 &lt;br /&gt;
 [Service]&lt;br /&gt;
 User=root&lt;br /&gt;
 ExecStart=/usr/bin/python /opt/pyload/pyLoadCore.py&lt;br /&gt;
 &lt;br /&gt;
 [Install]&lt;br /&gt;
 WantedBy=multi-user.target&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Now we need to activate this rule with systemd.&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 sudo systemctl enable pyload.service&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
 reboot&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Deathbybandaid</name></author>
	</entry>
</feed>