-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
setup.py #58
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
hey ivan can you try with the latest git HEAD? I switched to remove setuptools from the equation, I think it's messing some things up |
It builds fine now. I am new to R. ly = pandas.read_csv( 'emails_yahoo_ab.csv'), na_values=range(0,55), Very nice stuff... ivan |
it's not in the docs but there's now a special indexer attribute which does what you want: ly.ix[:, ['First', 'Last']] note you never have to type getitem in practice, it's just [...], so ly.getitem('First') is the same as ly['First'] closing the issue =) |
Fix issue with new versions of NumPy (v1.10.1) that cause dtype metadata to be lost
sudo python setup.py -v build # fails on Mac OS 10.6 or something
can't convert the .pyx files to .c
hard linking pandas/src/skiplist.pyx -> pandas-0.4.0.dev20110715_027c90b/pandas/src
'pandas/src/sparse.c' not a regular file -- skipping
hard linking pandas/src/sparse.pyx -> pandas-0.4.0.dev20110715_027c90b/pandas/src
'pandas/src/tseries.c' not a regular file -- skipping
changing the setup.py as follows:
@line10
makes it work.
thx Pearu: http://osdir.com/ml/python.f2py.user/2003-11/msg00008.html
The text was updated successfully, but these errors were encountered: