0

I was installing pandas but it gives the following error:

Could not find a version that satisfies the requirement numpy==1.9.3 (from versions: 1.10.4,
1.11.0, 1.11.1rc1, 1.11.1, 1.11.2rc1, 1.11.2, 1.11.3, 1.12.0b1, 1.12.0rc1, 1.12.0rc2, 1.12.0,
1.12.1rc1, 1.12.1, 1.13.0rc1, 1.13.0rc2, 1.13.0, 1.13.1, 1.13.3, 1.14.0rc1, 1.14.0, 1.14.1,
1.14.2, 1.14.3, 1.14.4, 1.14.5, 1.14.6, 1.15.0rc1, 1.15.0rc2, 1.15.0, 1.15.1, 1.15.2, 1.15.3,
1.15.4)
No matching distribution found for numpy==1.9.3

I already have numpy 1.9.3 installed in my windows7

My OS is Windows 7 sp1. I tried pip install numpy first, then tried pip install numpy==1.9.3. I am using python 3.4.

Successfully installed numpy-1.9.3
You are using pip version 10.0.1, however version 19.0.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

I tried upgrading pip but it shows

You are using pip version 10.0.1, however version 19.0.3 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

(venv) C:\Users\admin\PycharmProjects\pythonproject>python -m pip install --upgrade pip
DEPRECATION: Python 3.4 support has been deprecated. pip 19.1 will be the last one supporting it. Please upgrade your Python as Python 3.4 won't be maintained after March 2019 (cf PEP
429).
Requirement already up-to-date: pip in c:\users\admin\pycharmprojects\pythonproject\venv\lib\site-packages (19.0.3)
6
  • I recommend you to do a fresh installation (updated python version and then install numpy, pandas...). Also you can install anaconda that comes by default with a stable python + numpy/pandas installation. Commented Mar 31, 2019 at 13:19
  • will windows 7 support python version 3.7? Commented Mar 31, 2019 at 13:38
  • yes of course! python.org/downloads/windows Commented Mar 31, 2019 at 13:40
  • ok thanks....i will try by uninstalling python 3.4 Commented Mar 31, 2019 at 13:41
  • 2
    problem solved...Thank you so much Commented Mar 31, 2019 at 16:41

1 Answer 1

1

The problem is likely to come from incompatible versions of python / pandas. I suggest you do the following:

  • Uninstall python 3.4
  • Install last python version 3.7
  • Install numpy / pandas
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.