PATH: //opt/alt/python39/bin
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 2to3
↓
X
📄 lswsgi
↓
X
📄 msgfmt3.9.py
↓
X
📄 msgfmt3.py
↓
X
📄 pathfix.py
↓
X
📄 pip
↓
X
📄 pip-3
↓
X
📄 pip-3.9
↓
X
📄 pip3
↓
X
📄 pip3.9
↓
X
📄 pydoc3
↓
X
📄 pydoc3.9
↓
X
📄 pygettext3.9.py
↓
X
📄 pygettext3.py
↓
X
📄 python3
↓
X
📄 python3-config
↓
X
📄 python3.9
↓
X
📄 python3.9-config
↓
X
📄 python3.9-x86_64-config
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: pip-3
#!/opt/alt/python39/bin/python3 # -*- coding: utf-8 -*- import re import sys try: from pip._internal.cli.main import main except ImportError: try: from pip._internal.main import main except ImportError: try: # If the user has downgraded pip, the above import will fail. # Let's try older methods of invoking it: # pip 19 uses this from pip._internal import main except ImportError: # older pip versions use this from pip import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
SIMPAN PERUBAHAN