-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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
Problems installing pandas using pip #13095
Comments
are you trying to contribute? you need to otherwise see installation instructions here generally a I think that pip doesn't install the deps correctly if you are installing like this (and that its failing because you don't have the build deps installed, e.g. cython/numpy). |
Think the error message from pandas could include |
@MaximilianR that's a good point. do you want to PR for an extended message? |
I tried conda before but it is the same problem with importing. So I tried it in an new created environment and without. Installing seems to be always fine. Just importing is the same problem always adding -force doesn't help since it can't find setup.py at all such that it still gives the error |
so I found now the pandas in /anaconda/lib/python2.7/site-packages but still can't find any setup.py |
once you install via
|
Great it worked, except form another name of the environment I don't what I did different last time. However, it worked! So thanks a lot!!! :) |
@lherstix you don't :> that was just a test the |
Thanks a lot, that helped :) |
Me again... So after pandas worked fine, I installed seaborn the same way and in the same environment. Now I get an error for pandas and for seaborn when I import them:
If I comment out
I hope it is understandable and you can help me! Greatz! |
@lherstix I suppose you are running a Mac? See http://conda.pydata.org/docs/troubleshooting.html#issue-valueerror-unknown-locale-utf-8-on-os-x |
Yes yuo were right. and it works! Thank you!! |
Hey everyone,
I installed pandas via pip git
pip install git+git://github.com/pydata/pandas.git
and during the installation it says:
Running setup.py install for pandas ... done Successfully installed pandas-0.18.0+207.gc6110e2
But when I want to import it, it gives an error
C extension: hashtable not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace' to build the C extensions first.
I already tried to run this but the response is always:
python: can't open file 'setup.py': [Errno 2] No such file or directory
Maybe I am in the wrong directory. So in which I am suppose to run it?
Also I looked in site-packages but can't find pandas or something similar.
I am confused since it said it runs the setup.py during the installation...
Can anyone help? What I am doing wrong?
Thanks in advance
Leni
The text was updated successfully, but these errors were encountered: