1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/src/pip/__main__.py

20 lines
610 B
Python
Raw Normal View History

from __future__ import absolute_import
2015-02-11 16:23:57 +01:00
import os
2014-02-10 21:28:02 +01:00
import sys
# If we are running from a wheel, add the wheel to sys.path
# This allows the usage python pip-*.whl/pip install pip-*.whl
if __package__ == '':
# __file__ is pip-*.whl/pip/__main__.py
# first dirname call strips of '/__main__.py', second strips off '/pip'
# Resulting path is the name of the wheel itself
# Add that to sys.path so we can import pip
path = os.path.dirname(os.path.dirname(__file__))
sys.path.insert(0, path)
from pip._internal import main as _main # noqa
2014-02-10 21:28:02 +01:00
2014-02-10 21:36:55 +01:00
if __name__ == '__main__':
sys.exit(_main())