[issue43550] pip.exe is missing from the NuGet package

2021-03-19 Thread Eryk Sun
Eryk Sun added the comment: I suppose if you really need a plain `pip` command, you could reinstall with `python.exe -m pip install --force-reinstall pip`. -- nosy: +eryksun ___ Python tracker _

[issue43550] pip.exe is missing from the NuGet package

2021-03-19 Thread Steve Dower
Steve Dower added the comment: Unfortunately not, because we don't know where it will be installed to, and that executable embeds the full path to its matching python.exe. I suggest running "python.exe -m pip" instead. -- ___ Python tracker

[issue43550] pip.exe is missing from the NuGet package

2021-03-18 Thread Georgios Petrou
New submission from Georgios Petrou : When downloading a package from https://www.nuget.org/packages/python the pip.exe is not included. As far as I understand, the recommended way to use pip from a script is to call it from subprocess. Would it be possible to include the exe in the package?