惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
WordPress大学
WordPress大学
月光博客
月光博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - 司徒正美
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
Blog — PlanetScale
Blog — PlanetScale
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
L
LangChain Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
量子位

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - bottles
2026-06-26 · via AUR Newest Packages

Pinned Comments

brombinmirko commented on 2022-09-15 20:54 (UTC) (edited on 2022-09-15 20:54 (UTC) by brombinmirko)

=====================

READ HERE FIRST

=====================

This package is not officially supported by the Bottles Developers. Even though some of those developers are package maintainers, support is offered by the package authors who will make sure it is handled in the best possible way. They will diagnose the issues and report the issues to the development team if they are not related to the package.

Machion commented on 2026-04-18 05:55 (UTC)

Could you please make dependency "fvs2" (which itself needs Go again) optional? I don't use the versioning system. It just bloats my bottles installation and it works without it.

cylgalad commented on 2026-04-07 11:07 (UTC)

webkit2gtk is dead, please change the PKGBUILD to depend on webkit2gtk-4.1 instead.

w568w commented on 2026-03-24 17:24 (UTC) (edited on 2026-03-24 17:54 (UTC) by w568w)

WontDoItAgain commented on 2026-02-19 14:37 (UTC) (edited on 2026-02-19 14:39 (UTC) by WontDoItAgain)

For those getting stuck on the wine mono install, run the software via terminal so you can check the logs and as indicated by this comment https://github.com/bottlesdevs/Bottles/issues/4283#issuecomment-3685704498 kill the process after a while with pkill -f wine-mono I suppose the installer is not silent and gets hung at the end of the install process. Installer version was [wine-mono-10.3.0-x86.msi]

naguz commented on 2026-02-07 17:54 (UTC)

I have a problem building new bottles after installation. I had to cancel the first try at creating an application bottle after it was stuck forever at installing wine-mono, to capture some output from the terminal:

18:41:57 (INFO) Dependency installed: courie32 in WinApps 
18:41:57 (INFO) Installing dependency [mono] in bottle [WinApps]. 
18:41:58 (INFO) Using Wine Uninstaller -- get_uuid 
18:41:58 (INFO) Executing command: /home/user/.local/share/bottles/runners/soda-9.0-1/bin/wine64 uninstaller --list | grep -i 'Wine Mono' | cut -f1 -d\| 
wineserver: using server-side synchronization.
18:41:59 (WARNING) File [wine-mono-10.3.0-x86.msi] already exists in temp, skipping. 
18:41:59 (INFO) Launching an executable… 
18:41:59 (INFO) Session started: id=2 bottle=WinApps program=wine-mono-10.3.0-x86.msi 
18:41:59 (INFO) Using Wine MSI Installer -- install 
18:41:59 (INFO) Executing command: /home/user/.local/share/bottles/runners/soda-9.0-1/bin/wine64 msiexec /i /home/user/.local/share/bottles/temp/wine-mono-10.3.0-x86.msi None 
wineserver: using server-side synchronization.

I found a similar issue on the upstream bugtracker here: https://github.com/bottlesdevs/Bottles/issues/3421 One user there mentioned installing wine-mono helped for them, but it made no difference for me.

eduardolucioac commented on 2026-02-02 19:06 (UTC) (edited on 2026-02-02 19:08 (UTC) by eduardolucioac)

[SOLUTION] Bottles (AUR) failing to run/install – Python dependency errors and missing setuptools_reproducible

When running Bottles installed from the AUR, multiple Python dependency errors occurred, such as:

  • ModuleNotFoundError: No module named 'icoextract'
  • ModuleNotFoundError: No module named 'pathvalidate'
  • ModuleNotFoundError: No module named 'patoolib'

During reinstallation, the build process failed while compiling the patool dependency with the following error:

pyproject_hooks._impl.BackendUnavailable: Cannot import 'setuptools_reproducible'
ERROR Backend 'setuptools_reproducible' is not available.
Root cause

The issue was caused by performing a clean build only for the bottles package, without rebuilding its AUR dependencies, leaving the build environment in an inconsistent state. Additionally, the Python build backend setuptools_reproducible, required by patool, was not installed.

Solution
  1. Fully update the system:
sudo pacman -Syu
  1. Install the missing build backend:
yay -S python-setuptools-reproducible
  1. Remove previous build artifacts:
rm -rf ~/.cache/yay/patool ~/.cache/yay/bottles
  1. Reinstall Bottles and rebuild all AUR dependencies:
yay -S bottles

When prompted for cleanBuild, select [A]ll.

  1. Run the application:
bottles

After these steps, Bottles runs correctly.

Note: The key points were rebuilding all AUR dependencies and ensuring the presence of python-setuptools-reproducible, which is required for building patool.


UPDATE: First, follow the process described by @noraj...

My error is that I rebuild (clean build) only bottles and not all the AUR dependencies.

So sudo pacman -Rns bottles and not just sudo pacman -R bottles. And if using yay, choose [A]ll at cleanBuild step when reinstalling.

noraj commented on 2026-01-20 21:25 (UTC) (edited on 2026-01-20 21:29 (UTC) by noraj)

Before rebuilding I had

Traceback (most recent call last):                                                                                                                                                                                   
  File "/usr/bin/bottles", line 49, in <module>                                                                                                                                                                      
    from bottles.frontend import main                                                                                                                                                                                
  File "/usr/share/bottles/bottles/frontend/main.py", line 42, in <module>                                                                                                                                           
    from bottles.frontend.windows.window import BottlesWindow                                                                                                                                                        
  File "/usr/share/bottles/bottles/frontend/windows/window.py", line 33, in <module>                                                                                                                                 
    from bottles.backend.managers.manager import Manager                                                                                                                                                             
  File "/usr/share/bottles/bottles/backend/managers/manager.py", line 31, in <module>                                                                                                                                
    import pathvalidate                                                                                                                                                                                              
ModuleNotFoundError: No module named 'pathvalidate'    

After rebuilding I have

Traceback (most recent call last):
  File "/usr/bin/bottles", line 49, in <module>
    from bottles.frontend import main
  File "/usr/share/bottles/bottles/frontend/main.py", line 44, in <module>
    from bottles.frontend.views.preferences import PreferencesWindow
  File "/usr/share/bottles/bottles/frontend/views/preferences.py", line 29, in <module>
    from bottles.frontend.widgets.component import ComponentEntry, ComponentExpander
  File "/usr/share/bottles/bottles/frontend/widgets/component.py", line 26, in <module>
    from bottles.backend.utils.manager import ManagerUtils
  File "/usr/share/bottles/bottles/backend/utils/manager.py", line 25, in <module>
    import icoextract  # type: ignore [import-untyped]
    ^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'icoextract'

My error is that I rebuild (clean build) only bottles and not all the AUR dependencies.

So sudo pacman -Rns bottles and not just sudo pacman -R bottles. And if using yay, choose [A]ll at cleanBuild step when reinstalling.

aliu commented on 2026-01-19 16:25 (UTC)

prRoumanet commented on 2026-01-19 06:40 (UTC)

Bottles depends on python-steamgriddb but every PKGBUILD I've found on Internet linked to https://github.com/ZebcoWeb For now, this account seems to have been deleted '404 not found'

So it's not possible to install Bottles as an AUR package.