Package Details: dlss-updater 5.0.1-1

Git Clone URL: https://aur.archlinux.org/dlss-updater.git (read-only, click to copy)
Package Base: dlss-updater
Description: DLSS, XeSS, DirectStorage, FSR, and Streamline DLL updater for games
Upstream URL: https://github.com/Recol/DLSS-Updater
Licenses: AGPL-3.0-only
Submitter: yochananmarqos
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 3
Popularity: 0.70
First Submitted: 2026-01-14 18:37 (UTC)
Last Updated: 2026-09-10 19:15 (UTC)

Latest Comments

meow-owo commented on 2026-09-05 18:56 (UTC)

@yochananmarqos: 'python-anyio was just updated to 4.15.1-1 addressing the issue.' yeah---It worked.thank you sooooooo much~

yochananmarqos commented on 2026-09-05 14:34 (UTC)

@meow-owo: python-anyio was just updated to 4.15.1-1 addressing the issue.

yochananmarqos commented on 2026-09-05 13:08 (UTC)

@meow-owo: I see the same in my log file, but it seems to work fine.

I would report it upstream and included your ~/.local/share/dlss-updater/dlss_updater.log.

2026-09-05 06:45:33,673 - INFO - DLSS Updater (Flet) starting...
2026-09-05 06:45:33,676 - INFO - Initializing database...
2026-09-05 06:45:33,676 - ERROR - Failed to initialize database: module 'anyio' has no attribute 'to_thread'
Traceback (most recent call last):
  File "/usr/lib/python3.14/site-packages/dlss_updater/main.py", line 250, in init_database
    await db_manager.initialize()
  File "/usr/lib/python3.14/site-packages/dlss_updater/database.py", line 274, in initialize
    await anyio.to_thread.run_sync(self._create_schema, limiter=thread_io)
          ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.14/site-packages/anyio/_lazyimport.py", line 41, in __getattr__
    raise AttributeError(
        f"module {module_name!r} has no attribute {name!r}"
    ) from None
AttributeError: module 'anyio' has no attribute 'to_thread'
2026-09-05 06:45:33,700 - INFO - Initializing main view...
2026-09-05 07:07:07,920 - INFO - Loaded cached scan results: 10 games (scanned 9 days ago)

meow-owo commented on 2026-09-05 09:53 (UTC)

Description

After installing dlss-updater 4.8.1-1 on Arch Linux, DLSS Updater fails to initialize its database on startup.

The main error is:

ERROR - Failed to initialize database: module 'anyio' has no attribute 'to_thread'

AttributeError: module 'anyio' has no attribute 'to_thread'

My system has:

python-anyio 4.15.0-1

The anyio.to_thread module itself exists and can be imported successfully:

$ python -c 'import anyio.to_thread; print(anyio.to_thread)'
<module 'anyio.to_thread' from '/usr/lib/python3.14/site-packages/anyio/to_thread.py'>

However:

$ python -c 'import anyio; print(hasattr(anyio, "to_thread"))'
False

DLSS Updater's database initialization code calls:

await anyio.to_thread.run_sync(...)

which results in the AttributeError.

Reproduction

I removed the DLSS Updater user data directory:

rm -r ~/.local/share/dlss-updater/

and then launched DLSS Updater again. The same error was reproduced on a clean data directory.

Therefore, this does not appear to be caused by an old database or leftover user files.

After the database initialization fails, additional errors appear, such as:

no such table: games
no such table: steam_apps
no such table: steam_images
no such table: dll_backups

These appear to be cascading errors caused by the database schema not being initialized.

Environment
  • OS: Arch Linux
  • Python: 3.14
  • DLSS Updater: 4.8.1-1
  • python-anyio: 4.15.0-1
  • Installation method: Arch Linux PKGBUILD

Could you please confirm whether this is a compatibility issue between DLSS Updater and the current AnyIO version, or whether the Arch package is missing or incorrectly specifying a dependency?

It gives an error. The above is the AI's report. Simply put, after running rm -r ~/.local/share/dlss-updater/ and reopening DLSS Updater, I get an error.

KuroxLemming commented on 2026-08-03 03:46 (UTC) (edited on 2026-08-03 03:47 (UTC) by KuroxLemming)

When I'm trying to install this through shelly it gives me this error.

[AurDownload] dlss-updater — aur_download_start (0%)
ALPM operation failed
[PackageDownload] https://aur.archlinux.org/rpc/ — aur-http (100%)
[PackageDownload] https://aur.archlinux.org/rpc/?v=5&type=search&arg=python-%7Bbuild%2Cinstaller%2Cwheel%7D&by=provides — aur-http (100%)
AUR operation failed
Installation failed: FileNotFound
Installation failed.
Finished (exit 1)

Finished (exit 1)