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

推荐订阅源

C
Check Point Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
腾讯CDC
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
Vercel News
Vercel News
P
Proofpoint News Feed
雷峰网
雷峰网
博客园_首页
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
V
V2EX
F
Fortinet All Blogs
酷 壳 – CoolShell
酷 壳 – CoolShell
MyScale Blog
MyScale Blog
S
SegmentFault 最新的问题

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) - koboldcpp-bin
2026-05-31 · via AUR Newest Packages

Latest Comments

speedorama commented on 2025-05-28 16:47 (UTC)

@unhero I will repost a comment I made on a different package I maintain:

That happens when the package is outdated. I get notified by GitHub for minor releases, not patch releases, so I might take longer to update the package when there's a new patch release.

In the future, you can flag this package as out-of-date if the upstream repo's latest release version is different than this package's version.

unhero commented on 2025-05-25 13:16 (UTC) (edited on 2025-05-26 20:18 (UTC) by unhero)

JoZ3 commented on 2025-04-02 11:39 (UTC)

speedorama commented on 2024-08-24 20:17 (UTC)

@Mr.Smith1974

I have added the .desktop file and icon. The package name hasn't been changed, however this package now uses the nocuda koboldcpp binary. I have created a new koboldcpp-cuda-bin package that uses the cuda1210 binary.

<deleted-account> commented on 2024-08-23 11:38 (UTC)

  1. need .desktop file and icon
  2. I think the package should be called koboldcpp-cuda-bin

speedorama commented on 2024-04-09 14:00 (UTC)

@dreieck Those changes have been made. Thanks for the feedback!

dreieck commented on 2024-03-27 10:31 (UTC)

Please add koboldcpp=${pkgver} to the provides array and koboldcpp to the conflicts array.

Regards and thanks for maintaining!

speedorama commented on 2024-02-18 22:46 (UTC) (edited on 2024-02-18 23:40 (UTC) by speedorama)

@snarfies Please direct issues to koboldcpp's GitHub repository, as the binary is taken directly from it.

If you would like to build from source instead (this would solve the tkinter issue, not sure about horde), it wouldn't be hard to modify koboldcpp-cuda's existing PKGBUILD to use the latest release. Below is a PKGBUILD demonstrating that.

pkgname=koboldcpp-cuda
pkgver=1.58
pkgrel=1
pkgdesc="CUDA build of koboldcpp"
arch=('x86_64')
url="https://github.com/LostRuins/koboldcpp"
license=('AGPL3')
depends=('python' 'cblas' 'openblas' 'cuda')
optdepends=('customtkinter')
source=("$pkgname-$pkgver.tar.gz::https://github.com/LostRuins/koboldcpp/archive/refs/tags/v$pkgver.tar.gz")
md5sums=('6d51ad5f6afaa7112d97302787d03ab0')

build() {
  cd "$srcdir/koboldcpp-$pkgver"
  make LLAMA_OPENBLAS=1 LLAMA_FAST=1 LLAMA_CUBLAS=1
}

package() {
  cd "$srcdir/koboldcpp-$pkgver"

  install -d "$pkgdir/usr/share/koboldcpp"
  cp -a . "$pkgdir/usr/share/koboldcpp"

  echo '#!/bin/sh' > koboldcpp
  echo 'cd /usr/share/koboldcpp && python koboldcpp.py "$@"' >> koboldcpp

  install -Dm755 koboldcpp "$pkgdir/usr/bin/koboldcpp"
}

Edit:

Concerning the ugly UI, tkinter is detected, as if it weren't, there wouldn't be a UI. I've been told that there's an issue with a conflicting or missing X11 dependency, and no solution is known yet.

For Horde, you can also try exporting the SSL certificate directory, like so:

$ export SSL_CERT_DIR=/etc/ssl/certs

toynbeeidea commented on 2024-02-18 13:13 (UTC)

Still not fully functioning as of 1.58 update: tkinter is still not being detected/used, still unable to connect to Kobold Horde.

toynbeeidea commented on 2024-02-14 05:31 (UTC) (edited on 2024-02-14 13:09 (UTC) by toynbeeidea)

Two issues with the -bin build as opposed to the outdated kobolcpp-cuda:

1) tkinter does not seem to be detected, despite being installed. Minor issue, just makes the GUI ugly.

2) Cannot connect to Kobold Horde: Please connect to custom endpoint at http://localhost:5001 [00:26:58] Embedded Horde Worker 'test' is started. [00:26:58] Error: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:1131)> - Make sure your Horde API key and worker name is valid!