-
Notifications
You must be signed in to change notification settings - Fork 2.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
PermissionError installing root package in 1.1.0 #3079
Labels
kind/bug
Something isn't working as expected
Comments
agoose77
added
kind/bug
Something isn't working as expected
status/triage
This issue needs to be triaged
labels
Oct 5, 2020
Verified against the 1.1 branch. podman run --rm -i --entrypoint bash python:3.7 <<EOF
pip install --quiet git+https://github.com/python-poetry/poetry.git@1.1
adduser --disabled-password --gecos "User" --uid 1000 user
su - user
poetry new foobar
cd foobar
export PYTHONDONTWRITEBYTECODE=1
export POETRY_VIRTUALENVS_CREATE=0
poetry install -vvv
EOF |
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 6, 2020
This change improves handling of site-packages under system env, by gracefully handling fallbacks to user site when required and possible. Resolves: python-poetry#3079
@abn this passes my existing build-step test. Thanks for the quick turn around! |
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 23, 2020
This change improves handling of site-packages under system env, by gracefully handling fallbacks to user site when required and possible. Resolves: python-poetry#3079
abn
added a commit
to abn/poetry
that referenced
this issue
Oct 23, 2020
This change improves handling of site-packages under system env, by gracefully handling fallbacks to user site when required and possible. Resolves: python-poetry#3079
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
-vvv
option).Issue
This issue follows from #2996
The line that install the
dist-info
directory uses a single env directory:poetry/poetry/masonry/builders/editable.py
Line 190 in ae6f574
It seems to me like the fix would be similar to #3000
Thank you for all of the hard work Poetry team.
The text was updated successfully, but these errors were encountered: