-
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
Venv is created without pip #169
Comments
I should add that, if I create a venv manually ( |
I think now I've isolated the problem. If I install poetry with pipsi, it will fail to link pip. If I install with |
Is the fix something poetry needs to add or pipsi? |
@Victor-Savu It does, I've already tried it and commented there :) |
Thanks! |
@cs01 I honestly have no idea. Poetry appears to be doing everything right (creating the venv with |
Ok, the pipsi available on PyPI is outdated (for almost three years, now) and shouldn't be used. That version always uses virtualenv instead of venv, even on python 3, and that's why poetry couldn't properly create virtualenvs. I installed pipsi from the git repo, installed poetry with it, and everything is fine. |
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. |
This causes an
EnvironmentError: Permission Denied
when I try to install anything, because it ends up using system-wide pip. What I find terribly strange is that the necessary flag is actually being passed here: https://github.com/sdispater/poetry/blob/develop/poetry/utils/venv.py#L140The text was updated successfully, but these errors were encountered: