3

I'm still a newbie in the Linux world, although I've been using it for a few years. However, I'm having trouble understanding this error!:

E: The method driver /usr/lib/apt/methods/hyyps could not be found.

I don't know how a "hyyps" can exist! Should I remove? If yes, how do I do it?

Thanks to anyone who can help.

This is what i get when I type: ls -l /usr/lib/apt/methods:

enter image description here

I can't see any "hyyps"!

I think I solved it, this is what I did: I opened the "software and updates" I unchecked everything as in the image image_1 and I did an apt update and I noticed that the error does not appear...image_2but the spelling errors have a solution?

HM ST
  • 39
  • 3

1 Answers1

11

You, probably, have a misspelled/mistyped repository line that looks something like:

deb hyyps://...

instead of:

deb https://...

either in your main apt sources file:

/etc/apt/sources.list

or in the files under the directory:

/etc/apt/sources.list.d/

Find that line, correct it and this error should be resolved.

Raffa
  • 34,963