PATH: //opt/alt/python27/bin
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 easy_install
↓
X
📄 easy_install-2.7
↓
X
📄 lswsgi
↓
X
📄 pip
↓
X
📄 pip-2
↓
X
📄 pip-2.7
↓
X
📄 pip2
↓
X
📄 pip2.7
↓
X
📄 pydoc
↓
X
📄 python
↓
X
📄 python-config
↓
X
📄 python2
↓
X
📄 python2-config
↓
X
📄 python2.7
↓
X
📄 python2.7-config
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: pip-2.7
#!/opt/alt/python27/bin/python # -*- 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