Could not find a version that satisfies the requirement ipykernel from jupyter 1 0 0 from versions

0 votes

Hi Guys,
I have jupyter rpm in my system. But when I tried to install, it shows me the below error.

$ pip install jupyter-1.0.0-py2.py3-none-any.whl --no-index  -f .
Ignoring indexes: https://pypi.python.org/simple
Processing ./jupyter-1.0.0-py2.py3-none-any.whl
Collecting qtconsole (from jupyter==1.0.0)
Collecting notebook (from jupyter==1.0.0)
Collecting nbconvert (from jupyter==1.0.0)
Collecting ipywidgets (from jupyter==1.0.0)
Collecting ipykernel (from jupyter==1.0.0)
  Could not find a version that satisfies the requirement ipykernel (from jupyter==1.0.0) (from versions: )
No matching distribution found for ipykernel (from jupyter==1.0.0)

Why I am getting this error?

Apr 23, 2020 in Linux Administration by akhtar
• 38,240 points
18,862 views

1 answer to this question.

0 votes

Hi@akhtar,

You may get this error because of older version of pip. Try to upgrade your pip using this below command.

$ pip install --upgrade pip

Hope this will work.

answered Apr 23, 2020 by MD
• 95,440 points