PATH: //proc/thread-self/root/opt/alt/python313/lib64/python3.13/importlib/metadata
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _adapters.py
↓
X
📄 _collections.py
↓
X
📄 _functools.py
↓
X
📄 _itertools.py
↓
X
📄 _meta.py
↓
X
📄 _text.py
↓
X
📄 diagnose.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: diagnose.py
import sys from . import Distribution def inspect(path): print("Inspecting", path) dists = list(Distribution.discover(path=[path])) if not dists: return print("Found", len(dists), "packages:", end=' ') print(', '.join(dist.name for dist in dists)) def run(): for path in sys.path: inspect(path) if __name__ == '__main__': run()
SIMPAN PERUBAHAN