On Thu, Aug 15, 2002 at 07:21:11AM +0200, [EMAIL PROTECTED] wrote: > > Hi Richard > > [ > On Wed, Aug 14, 2002 at 02:51:49PM +0200, [EMAIL PROTECTED] wrote: > > Hi there, > > > > if i try to install libldap2_2.0.23-7_hppa apt-get install throws an > error > > message: > > > > E: Release 'slapd_2.0.23-7_hppa' for 'python-zlib' was not found > > What command are you actually typing? Something like > > apt-get install libldap2 > > is what you want. > ] > > I've tried this before: > apt-get install ./libldap2_2.0.37-7_hppa > > and the error message is > > E: Release 'libldap2_2.0.23-7_hppa' for 'python-zlib' was not found > > more hints ?
apt-get install wants a package name, which is not the same as a file name. You seem to be trying to give it some variation of a path/filename. You can do things like apt-get install thing/woody which installs package thing from the woody release, which semi-explains your error message. Make sure you have something sensible in /etc/apt/sources.list, eg: deb http://ftp.uk.debian.org/debian/ woody main non-free contrib then do apt-get update apt-get install <pkgname> Alternatively, if you have the .deb file, you can try dpkg -i <filename> Richard

