Changes between Initial Version and Version 1 of Ticket #52448, comment 32


Ignore:
Timestamp:
Sep 30, 2016, 3:55:52 PM (8 years ago)
Author:
larryv (Lawrence Velázquez)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #52448, comment 32

    initial v1  
    1 I am trying to get us on the same page with the terminology. That program you are running inside the venv is the private copy of pip provided by ensurepip. It is not ensurepip itself.
     1I am trying to get us on the same page with the terminology. That program you are running inside the venv is the private copy of pip provided by ensurepip. It is not ensurepip itself. Look inside, ensurepip is not to be found.
     2{{{
     3#!python
     4#!/private/tmp/myvenv/bin/python3.5
     5
     6# -*- coding: utf-8 -*-
     7import re
     8import sys
     9
     10from pip import main
     11
     12if __name__ == '__main__':
     13    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
     14    sys.exit(main())
     15}}}