Package Details: bottles 2:63.2-1

Git Clone URL: https://aur.archlinux.org/bottles.git (read-only, click to copy)
Package Base: bottles
Description: Easily manage wine and proton prefix
Upstream URL: https://github.com/bottlesdevs/Bottles
Keywords: Bottles gaming Wine Wineprefixes
Licenses: GPL-3.0-only
Submitter: ragouel
Maintainer: lotation (francescomasala)
Last Packager: lotation
Votes: 181
Popularity: 3.44
First Submitted: 2020-11-28 22:52 (UTC)
Last Updated: 2026-04-08 07:39 (UTC)

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.

Latest Comments

1 2 3 4 5 6 .. 31 Next › Last »

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)

Bottles now relies [1] on fvs2 [2] executable. Starting the application gives the following error:

[Errno 2] No such file or directory: 'fvs2'  File "/usr/share/bottles/bottles/backend/utils/threading.py", line 73, in __target
    result = self.task_func(*args, **kwargs)
[...]

Note that python-fvs is a different package that provides fvs, which has been no longer depended.

To satisfy the dependency, I have packaged fvs2 [3]. Please take a look.

[1] https://github.com/bottlesdevs/Bottles/pull/4437

[2] https://github.com/fvs-lab/fvs2

[3] https://aur.archlinux.org/packages/fvs2

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)

You could download the source distribution from PyPI: https://pypi.org/project/python-steamgriddb/#files

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.

FabioLolix commented on 2026-01-11 14:56 (UTC)

There has been a Python update (3.13 > 3.14), all AUR packages need to be rebuilded against the new version (not reinstalled, delete the old ones)

Also help yourselves with rebuild-detector https://archlinux.org/packages/extra/any/rebuild-detector/