-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
add Cython version as a pip dependency #9827
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
Cython actually isn't an install requirement for pandas if you are using the pypi distribution (what you get from |
|
Hmm. Looking through our setup.py file, it appears we attempt to build with Cython if it's installed without checking any minimum versions. That is indeed problematic -- the installation page mentions that cython 0.19.1 is required to build the dev version. |
I suppose you could add this similarly to how building with system installed libraries is not generally recommended, see the install instructions |
Yeah, it's an unusual case: a university server where I've not got sudo privelidges and Ubuntu 12.04 (with about 40 updates not installed! It's behind a firewall though..). Anyway, it's an easy fix and helpful for others in a similar situaion (: |
@drevicko gr8 thanks! |
@drevicko You might want to consider Anaconda (esp Miniconda as a starting point) |
Attempting this as part of pycon sprints. |
…ate travis builds to test.
…ate travis builds to test.
closed by #9881 |
When I tried to pip install pandas on a system with cython 0.15.1, it failed (I'm guessing that's not surprising). After pip installing cython (to 0.22), pandas installs fine. The error messages talked about missing lib.pxd and tslib.pxd files - to my untrained eye, Cython wasn't an obvious culprit!
My point is that, unless there's a good reason not to, the minimum cython version for compiling pandas should be a dependency in pip.
The text was updated successfully, but these errors were encountered: