mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-02 12:02:49 +03:00
9 lines
268 B
Python
Executable File
9 lines
268 B
Python
Executable File
#!/Users/reymarrero/Developer/chatgpt/gpt4free/venv/bin/python3.9
|
|
# -*- 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())
|