-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Installation of Pandas in Pip v10.0.0b2 on PyPy fails #20666
Comments
Is there anything pandas should do here? From my brief skim of pypa/pip#5171 it's not clear what we should change (if anything). Note, we just followed SciPy here: https://github.com/scipy/scipy/blob/master/pyproject.toml, so they'll have similar issues. |
Unclear. PyPA are suggesting that the implementation of PEP 518 was premature, but I'm not sure I agree with that. At least having this issue reported here will help people find out what's wrong and how to fix it (for reference, you can somewhat avoid the issue by passing the flag |
Yes, thanks for raising the issue.
I suspect that others know more about what the proper thing to do here is.
We're happy to just follow best practices.
…On Thu, Apr 12, 2018 at 7:29 AM, davidjlloyd ***@***.***> wrote:
Unclear. PyPA are suggesting that the implementation of PEP 518 was
premature, but I'm not sure I agree with that. At least having this issue
reported here will help people find out what's wrong and how to fix it (for
reference, you can somewhat avoid the issue by passing the flag
--no-build-isolation to Pip 10). I think it is up to Pandas contributors
to decide what, if any, action should be taken in response to this upcoming
issue.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#20666 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABQHIvUWWcxvbzhBn2qHqHiY3Y43ULwRks5tn0i7gaJpZM4TRrZh>
.
|
This also happens in a virtualenv with python 3.6 (no pypy) on FreeBSD 11.1 (fully patched). |
I think this issue is another reason to remove |
This also happens on |
You can pass |
Passing |
If you aren’t using binaries then you’ll need a compiler.
…________________________________
From: Andreas Anderssson <[email protected]>
Sent: Tuesday, April 17, 2018 9:52:43 PM
To: pandas-dev/pandas
Cc: Tom Augspurger; Comment
Subject: Re: [pandas-dev/pandas] Installation of Pandas in Pip v10.0.0b2 on PyPy fails (#20666)
Passing --no-build-isolation yields a cc error for me.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#20666 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ABQHIsy4HkAFTVoqhChD9sk3crfM18NXks5tpqp7gaJpZM4TRrZh>.
|
I do have a compiler installed (clang). Which is infact successfully used
by other python dependencies that needs to be compiled. Let me get back
later with the full error message.
Den ons 18 apr. 2018 06:14Tom Augspurger <[email protected]> skrev:
… If you aren’t using binaries then you’ll need a compiler.
________________________________
From: Andreas Anderssson ***@***.***>
Sent: Tuesday, April 17, 2018 9:52:43 PM
To: pandas-dev/pandas
Cc: Tom Augspurger; Comment
Subject: Re: [pandas-dev/pandas] Installation of Pandas in Pip v10.0.0b2
on PyPy fails (#20666)
Passing --no-build-isolation yields a cc error for me.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<
#20666 (comment)>,
or mute the thread<
https://github.com/notifications/unsubscribe-auth/ABQHIsy4HkAFTVoqhChD9sk3crfM18NXks5tpqp7gaJpZM4TRrZh
>.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#20666 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFSjzaapNO0h9uY8yUihrXaA2ZwOXZuLks5tpr22gaJpZM4TRrZh>
.
|
This is the error I am getting:
|
The previous comment was actually because I already had numpy installed as an os level package in FreeBSD. Seems to work with |
I made an overview issue with the problems: #20775, so let's close this one |
I'm trying with "pip download pandas" |
Code Sample, a copy-pastable example if possible
Problem description
See pypa/pip#5171 for the other side of this issue. Pandas defines a
pyproject.toml
for PEP 518 compliance. Unfortunately, Pip 10 only partially supports PEP 518; it requires that all dependencies be available as binary distributions which is generally not the case for implementations like PyPy. As such installation fails as above.The text was updated successfully, but these errors were encountered: