-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
DOC: link to install instructions in README.md #13870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
For reference: |
Sorry that README is out of date. Install instructions are at http://pandas.pydata.org/pandas-docs/stable/install.html does |
Thanks @TomAugspurger for the reply! Unfortunately, no -- |
What are you Python and pip versions? Any semi-recent version of pip should work. See this list of binary wheels at https://pypi.python.org/pypi/pandas/0.18.1, which is what |
Ah, that did it! This machine has Python 2.7.9 and pip 1.5.6. |
This was closed by #13882 |
Uh oh!
There was an error while loading. Please reload this page.
edit: the install instructions in the github README.md are out of date. They should link to the install instructions on the website
I'm not sure what the expectation is here, but it seems to me that something's not right... The installation instructions say that
easy_install
has access to binary packages. However,easy_install
fails if the appropriate compiler is not available. Would it be possible to either clarify the instructions to explain that binary packages are not available viaeasy_install
, or fix the package to work without a compiler?Code Sample, a copy-pastable example if possible
Expected Output
Pandas should be successfully installed
Actual Output
error: Setup script exited with error: Microsoft Visual C++ 9.0 is required (Unable to require vcvarsall.bat). Get it from http://aka.ms/vcpython27
output of
pd.show_versions()
easy_install
is trying to installpandas-0.18.1
.However, it is not succeeding. As a result,
import pandas as pd
throwsImportError
and I cannot run this command.The text was updated successfully, but these errors were encountered: