-1

When trying to install pandas in cmd, I keep receiving the error:

"Could not find a version that satisfies the requirement jupyter (from versions: ) No matching distribution found for jupyter:

I have spent a few hours looking for, and trying, different solutions for this error. If anyone can help me, it will greatly be appreciated. I am new to python and I am trying to expand my data analysis capabilities.

Sven Hakvoort
  • 3,033
  • 2
  • 13
  • 30
Chaser
  • 1
  • 1
  • You're using IPython. – Maximilian Burszley Nov 30 '18 at 21:11
  • can you post what exact commands you are trying and some details about your environment (operating system, version of Python)? – Mark Nov 30 '18 at 21:13
  • Please describe your environment and what you've tried. Also, I recommend the Anaconda distro if you are having trouble getting everything setup and are using Windows. – Kyle Nov 30 '18 at 21:18
  • Python 3.7.1 Windows 7 Latest version of Anaconda in cmd: pip install pandas also tried: pip install pandas_datareader – Chaser Nov 30 '18 at 21:24

1 Answers1

0

Try installing pipenv with pip3 instead of pipsi , refer to the link below for more info : https://github.com/pypa/pipenv/issues/994

your question may also be related to 'pip install' fails for every package ("Could not find a version that satisfies the requirement")

So please try :

curl https://bootstrap.pypa.io/get-pip.py | python
pip install --upgrade setuptools
Kalangu
  • 125
  • 7