在Windows7(家庭版) x86 64位计算机上,我安装了python
https://www.python.org/ftp/python/3.7.0/python-3.7.0b4-amd64.exe然后在Windows命令提示符(cmd)中键入
python -m pip install pandas-datareader这会下载一些内容,但会失败,并显示以下错误:
Could not find a version that satisfies the requirement Cython (from versions: )
No matching distribution found for Cython如果我使用python -m pip list进行检查,它不会显示pandas-datarerader
敬请指教。
发布于 2018-05-10 14:06:50
您需要使用Python3.6版,因为pandas-datareader不支持3.7版。
您可以从该包的pypi page中查看受支持的Python版本。
我建议完全卸载3.7,重新启动计算机,然后安装Windows的最新3.6版本。
https://stackoverflow.com/questions/50266452
复制相似问题