Package Details: tribler 7.14.0-1

Git Clone URL: https://aur.archlinux.org/tribler.git (read-only, click to copy)
Package Base: tribler
Description: P2P/Bittorrent/YouTube client
Upstream URL: http://tribler.org
Licenses: GPL3
Conflicts: tribler
Provides: tribler
Submitter: FFY00
Maintainer: AnoGP (impulse)
Last Packager: AnoGP
Votes: 15
Popularity: 0.096266
First Submitted: 2020-10-24 16:58 (UTC)
Last Updated: 2024-04-26 12:10 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

dejanmilo commented on 2021-01-03 17:59 (UTC)

I think the problem is with the update from Python 3.8.x to 3.9.x some days ago. Since the last Manjaro-update - the Python update included - Tribler is working no more more.

dboehmisch commented on 2021-01-03 17:27 (UTC)

Getting same error with 'validate' module. Looking at the error and last update of validate, I'm assuming it's incompatible with Python 3.

https://pypi.org/project/validate/

http://www.voidspace.org.uk/python/validate.html

What's weird is I started getting this error prior to updating the package to the latest version. Was hoping an update would solve it.

dejanmilo commented on 2021-01-02 11:40 (UTC)

Hi,

thanks, but still the same, after calling /usr/bin/tribler (which is linked to /opt/Tribler/tribler.sh)

Traceback (most recent call last): File "/opt/Tribler/run_tribler.py", line 12, in <module> from tribler_core.config.tribler_config import CONFIG_FILENAME File "/opt/Tribler/tribler-core/tribler_core/config/tribler_config.py", line 9, in <module> from validate import Validator ModuleNotFoundError: No module named 'validate'

The requirements from /opt/Tribler/requirements.txt were already satisfied.

After calling /opt/Tribler/run_ribler.py I got this output:

Traceback (most recent call last): File "/opt/Tribler/run_tribler.py", line 8, in <module> from tribler_common.sentry_reporter.sentry_reporter import SentryReporter ModuleNotFoundError: No module named 'tribler_common'

AnoGP commented on 2021-01-02 10:47 (UTC)

Hi!

Thanks for reporting it! I added a few missing dependencies to this package based on the Tribler requirements.txt. Please test this release, maybe it will solve your issue.

dejanmilo commented on 2020-12-31 12:14 (UTC) (edited on 2020-12-31 12:15 (UTC) by dejanmilo)

Hi there,

I have here a Manjaro Linux with Kernel 5.9.16, Python 3.9,1 and Tribler 7.6.1-1

After starting Tribler, I got a crash with the following:

Traceback (most recent call last): File “/opt/Tribler/run_tribler.py”, line 12, in from tribler_core.config.tribler_config import CONFIG_FILENAME File “/opt/Tribler/tribler-core/tribler_core/config/tribler_config.py”, line 9, in from validate import Validator ModuleNotFoundError: No module named ‘validate’

Any idea how to fix this? Thank you.

AnoGP commented on 2020-12-08 23:18 (UTC)

The current version of Tribler (7.6.0) currently has issues on Arch Linux. For details follow this link: https://github.com/Tribler/tribler/issues/5814 For temporary workaround install the aiohttp_apispec package with pip to override the python-aiohttp-apispec package provided by the system: pip install --user aiohttp_apispec

AnoGP commented on 2020-11-25 10:38 (UTC)

Thanks for reporting it! The package python-yaml added as dependency.

prurigro commented on 2020-11-24 21:29 (UTC)

python-yaml needs to be added to the dependencies

AnoGP commented on 2020-11-20 07:50 (UTC)

Thanks for reporting the issue, it was my fault. I fixed the PKGBUILD, it has to work now.

figue commented on 2020-11-19 21:44 (UTC) (edited on 2020-11-19 21:44 (UTC) by figue)

@AnoGP @rkelly probably you need to change your PKGBUILD to something like this:

diff --git a/PKGBUILD b/PKGBUILD
index 859a652..31c5f4c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -46,8 +46,8 @@ package() {

     # Copy files from the source tarball to /opt/Tribler/.
     cp -r "$srcdir/tribler/src/"{anydex,pyipv8,tribler-common,tribler-core,tribler-gui,requirements.txt,run_tribler.py} "$pkgdir/opt/Tribler/"
-    cp -r "$srcdir/tribler/build/debian/tribler/usr/share/pixmaps/tribler_big.xpm" "$pkgdir/opt/Tribler/"
-    cp -r "tribler.sh" "$pkgdir/opt/Tribler/"
+    cp -f "$srcdir/tribler/build/debian/tribler/usr/share/pixmaps/tribler_big.xpm" "$pkgdir/opt/Tribler/"
+    install -Dm755 "$srcdir/tribler.sh" "$pkgdir/opt/Tribler/"

     # Copy desktop launcher to /usr/share/applications/.
     cp -r "Tribler.desktop" "$pkgdir/usr/share/applications/Tribler.desktop"