Hi guys. Just registered on the forums to get some help. Got my RPI B+ and setup. Had a few hiccups at the start (Noob alert). Got transmission up and running. Been using for 2 weeks now.
Now I am trying to configure PyLoad. Using this guide http://jankarres.de/2013/06/raspberry-p ... admanager/
I am stuck at step 2. I get the error "Unable to locate package liblept3".
Would really appreciate the help.
Re: Installing PyLoad
That package should be available for Raspbian.
Did you copy / paste the install command? If that's the case then try entering it manually. Copy / paste from websites can introduce (invisible) characters that the command interpreter cannot deal with.
Gr.
Dirk.
Did you copy / paste the install command? If that's the case then try entering it manually. Copy / paste from websites can introduce (invisible) characters that the command interpreter cannot deal with.
Gr.
Dirk.
Re: Installing PyLoad
I tried both ways. Copy pasting plus manual typing


Re: Installing PyLoad
Did you change /etc/apt/sources.list? Can you post the contents of this file.
Gr.
Dirk.
Gr.
Dirk.
Re: Installing PyLoad
Looks OK to me on a standard installation of Raspbian. Like Dirk, I suspect an inappropriate change to /etc/apt/sources.list
Code: Select all
pi@raspberrypi ~ $ apt-cache search liblept3
liblept3 - image processing library
pi@raspberrypi ~ $ sudo apt-get install liblept3 -s
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
liblept3
0 upgraded, 1 newly installed, 0 to remove and 139 not upgraded.
Inst liblept3 (1.69-3.1 Raspbian:7.0/stable [armhf])
Conf liblept3 (1.69-3.1 Raspbian:7.0/stable [armhf])
pi@raspberrypi ~ $ sudo apt-get install liblept3 -y
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
liblept3
0 upgraded, 1 newly installed, 0 to remove and 139 not upgraded.
Need to get 693 kB of archives.
After this operation, 1,543 kB of additional disk space will be used.
Get:1 http://mirrordirector.raspbian.org/raspbian/ wheezy/main liblept3 armhf 1.69-3.1 [693 kB]
Fetched 693 kB in 1s (474 kB/s)
Selecting previously unselected package liblept3.
(Reading database ... 109393 files and directories currently installed.)
Unpacking liblept3 (from .../liblept3_1.69-3.1_armhf.deb) ...
Setting up liblept3 (1.69-3.1) ...
pi@raspberrypi ~ $
Re: Installing PyLoad
Attached the file for contents of sources list
- Attachments
-
- Screenshot_2014-09-27-22-16-31.png (47.79 KiB) Viewed 7054 times
Re: Installing PyLoad
You're missing the 'deb' line. Did you maybe change 'deb' to 'deb-src'?benryu wrote:Attached the file for contents of sources list
I see you're editing with nano so you can easily duplicate the source line:
Select the line with deb-src, cut it (control-K) and then uncut it twice (control-U). After that change 'deb-src' on the first line to 'deb'
You should end up with
Code: Select all
deb http://archive.raspbian.org/raspbian wheezy main contrib non-free rpi
deb-src http://archive.raspbian.org/raspbian wheezy main contrib non-free rpi
Dirk.
Re: Installing PyLoad
Forgot to mention: after changing the file you do need to run 'sudo apt-get update' again.
Re: Installing PyLoad
Ok. It's late here. I'll give it a try tomorrow and update you. Thanks a lot for the help.
Re: Installing PyLoad
I have done as you said. But now i am getting something else which I dont understand.
- Attachments
-
- pyload.png (48.1 KiB) Viewed 6983 times
Re: Installing PyLoad
Have you tried
as it suggests?
(You probably got your system into an inconsistent state by making unneeded changes to the sources.list file: it is suggesting a way to get back to a situation it can deal with.)
Code: Select all
sudo apt-get -f install
(You probably got your system into an inconsistent state by making unneeded changes to the sources.list file: it is suggesting a way to get back to a situation it can deal with.)
Re: Installing PyLoad
ok let me give it a try. dint want to do anything else without guidance.
Thanks for everybody's help. I have completed the setup. I will test it and update so that thread can be closed.
Thanks for everybody's help. I have completed the setup. I will test it and update so that thread can be closed.
Re: Installing PyLoad
Update: pyLoad working properly