We should do a check for pip, as pip is not always present. If it's not present we have one of two options.
- Automatically execute
python -m ensurepip.
- Error out, instructing user to install pip and hint at 1, since they may want to use distro specific installation.
Alternatively, virtualenv wheel should be usable without installation I think. That would make a cleaner approach.
- Download latest wheel.
- Insert wheel to site.
- Execute required commands.
Originally posted by @abn in python-poetry/poetry#3706 (comment)
We should do a check for pip, as pip is not always present. If it's not present we have one of two options.
python -m ensurepip.Alternatively,
virtualenvwheel should be usable without installation I think. That would make a cleaner approach.Originally posted by @abn in python-poetry/poetry#3706 (comment)