Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a version that satisfies the requirement numpy == 1.9.3

Trying to install quandl and need pandas, so I tried pip install pandas and get:

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) No matching distribution found for numpy==1.9.3.

I'm using python 3.4, win32

like image 812
Jony Avatar asked Apr 12 '18 20:04

Jony


People also ask

How do I find out what version of NumPy I have?

To check a numpy version, write the numpy. __version__ code and run the file. It will return the current version of numpy installed on your machine.

How do I check NumPy version in Anaconda prompt?

Make sure you are using the Anaconda prompt, as the conda command only works in an Anaconda environment, and type conda list numpy . The result will show the version of numpy and associated packages.


2 Answers

The current quandl is more generous in its requirements:

https://pypi.python.org/pypi/Quandl

Requires Distributions
pandas (>=0.14)
numpy (>=1.8)

It's github setup is the same: https://github.com/quandl/quandl-python/blob/master/setup.py

like image 185
hpaulj Avatar answered Sep 25 '22 13:09

hpaulj


https://pypi.org/project/numpy/1.22.1/#files

Latest numpy does not support python 3.7 anymore.

like image 45
BaiJiFeiLong Avatar answered Sep 24 '22 13:09

BaiJiFeiLong