What happened
I’m trying to run a program that uses Fortress on a Debian 13 VM via Proxmox. I’m getting the following error. On a regular computer with Win11, the program works fine.
Steps to reproduce
with Fortress(headless=False, channel="stable") as f: # launches the stealth engine on a CDP endpoint
with sync_playwright() as p:
browser = p.chromium.connect_over_cdp(f.cdp_url)
page = browser.new_page()
page.goto("https://www.allegro.pl")
input()
page.screenshot(path="all-green.png")
Version
149.0.7827.232
Platform
Debian 13 VM
Logs
juha@debian13:~/Desktop/python/allegro$ uv run test.py
[tilion-fortress] downloading https://github.com/tiliondev/fortress/releases/download/v149.0.7827.232/tilion-fortress-linux-x64.tar.gz ...
[tilion-fortress] SHA256 verified
Traceback (most recent call last):
File "/home/juha/Desktop/python/allegro/test.py", line 6, in <module>
with Fortress(headless=False, channel="stable") as f: # launches the stealth engine on a CDP endpoint
~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/juha/Desktop/python/allegro/.venv/lib/python3.13/site-packages/tilion_fortress/__init__.py", line 216, in __enter__
def __enter__(self): return self.start()
~~~~~~~~~~^^
File "/home/juha/Desktop/python/allegro/.venv/lib/python3.13/site-packages/tilion_fortress/__init__.py", line 150, in start
self._start_native(plat)
~~~~~~~~~~~~~~~~~~^^^^^^
File "/home/juha/Desktop/python/allegro/.venv/lib/python3.13/site-packages/tilion_fortress/__init__.py", line 166, in _start_native
launcher = _download(plat, self._host, self._tag)
File "/home/juha/Desktop/python/allegro/.venv/lib/python3.13/site-packages/tilion_fortress/__init__.py", line 112, in _download
raise RuntimeError(f"bundle extracted but launcher missing: {launcher}")
RuntimeError: bundle extracted but launcher missing: /home/juha/.cache/tilion-fortress/v149.0.7827.232/linux-x64/tilion-fortress/tilion
juha@debian13:~/Desktop/python/allegro$
What happened
I’m trying to run a program that uses Fortress on a Debian 13 VM via Proxmox. I’m getting the following error. On a regular computer with Win11, the program works fine.
Steps to reproduce
Version
149.0.7827.232
Platform
Debian 13 VM
Logs