Re: I am unable to setup and send mail via mutt Here I am sharing my Here I have attached the xhci files where have found the probe functions: so which one should i change ?

Samuel Abraham <[email protected]> Wed, 2 Apr 2025 21:26:19 +0100
Newsgroups dev.linux.lists.outreachy
Message-ID <CADYq+fZyNOGS4nuWf8v6_DOpC3nFR+_rnY1iObXDwc0rq=3SYg@mail.gmail.com>
On Wed, Apr 2, 2025 at 9:10 PM Julia Lawall <[email protected]> wrote:
>
>
>
> On Thu, 3 Apr 2025, rujra wrote:
>
> > Hi team,
> > Its regarding the issue which I am facing in tutorial this command line:
> >
> > apt-get install python-ply python-git
>
> What motivated you to want to install these things?
>
> julia
>
>
> > OUTPUT :
> > <
> > sudo apt-get install python-ply python-git
> > Reading package lists... Done
> > Building dependency tree... Done
> > Reading state information... Done
> > Package python-git is not available, but is referred to by another package.
> > This may mean that the package is missing, has been obsoleted, or
> > is only available from another source
> > However the following packages replace it:
> >   python-git-doc
> >
> > E: Unable to locate package python-ply
> > E: Package 'python-git' has no installation candidate

I think you might be missing some package sources
I have encountered this issue before
Here are some steps you can try
1. run sudo apt update
2. check your architecture
    dpkg --print-architecture
3. check your package source list with
vim /etc/apt/sources.list
this is how mine looks like
deb http://archive.ubuntu.com/ubuntu jammy main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-updates main restricted
universe multiverse
deb http://security.ubuntu.com/ubuntu jammy-security main restricted
universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted
universe multiverse

4. if yours is empty, you can browse the appropriate source list for
your distribution and architecture
5.run sudo apt update && sudo apt upgrade -y

I hope this helps
Adekunle