PATH: //opt/alt/python33/bin
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 easy_install
↓
X
📄 easy_install-3.3
↓
X
📄 lswsgi
↓
X
📄 pip
↓
X
📄 pip3
↓
X
📄 pip3.3
↓
X
📄 pydoc3
↓
X
📄 pydoc3.3
↓
X
📄 python3
↓
X
📄 python3-config
↓
X
📄 python3.3
↓
X
📄 python3.3-config
↓
X
📄 python3.3m
↓
X
📄 python3.3m-config
↓
X
📄 python3.3m-x86_64-config
↓
X
📄 pyvenv
↓
X
📄 pyvenv-3.3
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: python3.3m-config
#!/opt/alt/python33/bin/python3.3m # -*- python -*- import sys import subprocess ver = sys.version[:3] arch = subprocess.check_output('uname -m'.split()).decode("utf-8").rstrip() call = ['python{ver}m-{arch}-config'.format(ver=ver, arch=arch)] + sys.argv[1:] retval = subprocess.call(call) if retval == 127: print('Could not find python{ver}m-{arch}-config. Look around to see available arches.'.format(ver=ver, arch=arch), file=sys.stderr)
SIMPAN PERUBAHAN