-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Build Error, pip is trying to build a wheel using "pep517" #28633
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
have you tried |
Thank you, very much. |
@MomIsBestFriend What version of pip do you have? |
the output of:
Gives me: |
Can you show the verbose output of pip? Something like |
Can you try For some reason it still tries to use the new PEP517 build process, which it should not do for editable installs. |
@jorisvandenbossche it Worked! Command output:
Proof:
|
Hello, yesterday when trying to build pandas under Windows I got the same error: Is there any problem if we simply include the wheel package in requirements-dev.txt? I assume that many of you have the |
The thing that is should not build a wheel for an inplace (editable) build (so we shouldn't need to add 'wheel' to the requirements). For some reason it is trying to use PEP517 build interface. |
Ah, I see. Sorry @jorisvandenbossche , I think I did not read very carefully what you've written before, now I understand, my bad. |
@gbaychev ATM the command Can we add the argument P.S It works every time. |
Yeah, we can add that flag to our dev docs. |
I get an error while following the contributing guide on creating a python eviroment using pip.
when I run the command:
I get an error that says:
To repreduce this issue:
python3-venv
python-pip
git clone https://github.com/your-user-name/pandas.git pandas-yourname
cd pandas-yourname
git remote add upstream https://github.com/pandas-dev/pandas.git
python3 -m venv ~/virtualenvs/pandas-dev
. ~/virtualenvs/pandas-dev/bin/activate
python -m pip install -r requirements-dev.txt
python setup.py build_ext --inplace -j 4
python -m pip install -e . --no-build-isolation
on line 8 I get an error.
P.S
This is my second time opening an issue(ever), please let me know if what else I should mention/include/change in order to be more productive.
The text was updated successfully, but these errors were encountered: