mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
11 lines
256 B
Python
Executable File
11 lines
256 B
Python
Executable File
#!/mnt/beegfs/home/rastogi/poet/.ai/bin/python3.11
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
|
|
from pip._internal.cli.main import main
|
|
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|