/proc/self/root/proc/thread-self/root/lib64/python3.9/venv
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
import sysfrom . import main rc = 1try: main() rc = 0except Exception as e: print('Error: %s' % e, file=sys.stderr)sys.exit(rc)