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

48,428

Solution 1

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

Solution 2

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

Latest numpy does not support python 3.7 anymore.

Solution 3

Just Install Python 3.5 or higher.

Solution 4

Just use this command :

pip install pandas==0.19.0 .

An older version which will not cry with this error !!

Solution 5

I had a similar problem, with installed python 3.6.9. Trying to install requirements with "pip install -r requirements.txt" gave me a similar error (can't find numpy version, in my case, it was 1.9.6). I triedpython3 -m pip install -r requirements.txt but it seems, for some reason the pip module for python3 hasn't been installed in my case. So, I installed it manually and repeated the command, and the requirements has been installed.

Manually installing pip module for python3:

Securely Download get-pip.py

Run python3 get-pip.py

Run sudo apt install python3-testresources

This will install or upgrade pip. Additionally, it will install setuptools and wheel if they’re not installed already.

"Warning: Be cautious if you’re using a Python install that’s managed by your operating system or another package manager. get-pip.py does not coordinate with those tools, and may leave your system in an inconsistent state. You can use python get-pip.py --prefix=/usr/local/ to install in /usr/local which is designed for locally-installed software."

And, finally, run python3 -m pip install -r requirements.txt

Share:
48,428
Jony
Author by

Jony

Updated on January 26, 2022

Comments

  • Jony
    Jony over 2 years

    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

  • Jony
    Jony about 6 years
    I am using this source for quandl.
  • hpaulj
    hpaulj about 6 years
    I wonder if it's a problem with a particular version of another package such as pandas (rather than quandl itself).
  • tread
    tread over 5 years
    Using python 3.7 this still happens