This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author paul.moore
Recipients paul.moore, steve.dower
Date 2019-10-04.09:18:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570180734.57.0.0824297518984.issue38369@roundup.psfhosted.org>
In-reply-to
Content
The venv module with Python 3.4 on Windows doesn't install pip - even though the --without-pip flag is not specified. This appears to be a regression since pip is installed when using 3.7:

>C:\Utils\PythonVersions\Python-3.7.3\python.exe -m venv ve-373
>dir .\ve-373\Scripts\pip.exe


    Directory: C:\Work\Scratch\vv\ve-373\Scripts


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
-a----       04/10/2019     10:08         102765 pip.exe


>py -m venv ve-374
>dir .\ve-374\Scripts\pip.exe
dir : Cannot find path 'C:\Work\Scratch\vv\ve-374\Scripts\pip.exe' because it does not exist.
At line:1 char:1
+ dir .\ve-374\Scripts\pip.exe
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (C:\Work\Scratch...Scripts\pip.exe:String) [Get-ChildItem], ItemNotFoundException
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
>py -V
Python 3.7.4
History
Date User Action Args
2019-10-04 09:18:54paul.mooresetrecipients: + paul.moore, steve.dower
2019-10-04 09:18:54paul.mooresetmessageid: <1570180734.57.0.0824297518984.issue38369@roundup.psfhosted.org>
2019-10-04 09:18:54paul.moorelinkissue38369 messages
2019-10-04 09:18:54paul.moorecreate