Patricio Rodriguez
Patricio Rodriguez

Reputation: 31

install pandas in python 3.7

I can´t install pandas for python 3.7 windows 10 this is the message

C:\Users\PATRICIO\AppData\Local\Programs\Python\Python37\Scripts>pip3 install pandas
Collecting pandas
  Using cached https://files.pythonhosted.org/packages/08/01/803834bc8a4e708aedebb133095a88a4dad9f45bbaf5ad777d2bea543c7e/pandas-0.22.0.tar.gz
  Could not find a version that satisfies the requirement Cython (from versions: )
No matching distribution found for Cython

Upvotes: 3

Views: 17499

Answers (1)

Stephen Rauch
Stephen Rauch

Reputation: 49774

Supported version list update as of 06 July 2018:

Officially Python 2.7, 3.5, 3.6, and 3.7


From the Current DOCS:

Python version support

Officially Python 2.7, 3.5, and 3.6.

Upvotes: 3

Related Questions