Search Criteria
Package Details: jasp-desktop 0.19.3-3
Package Actions
| Git Clone URL: | https://aur.archlinux.org/jasp-desktop.git (read-only, click to copy) |
|---|---|
| Package Base: | jasp-desktop |
| Description: | A complete statistical package for both Bayesian and Frequentist statistical methods |
| Upstream URL: | https://github.com/jasp-stats/jasp-desktop |
| Licenses: | AGPL-3.0-or-later |
| Provides: | jasp |
| Submitter: | BioArchLinuxBot |
| Maintainer: | BioArchLinuxBot |
| Last Packager: | BioArchLinuxBot |
| Votes: | 2 |
| Popularity: | 0.000000 |
| First Submitted: | 2022-06-07 01:21 (UTC) |
| Last Updated: | 2025-02-13 12:46 (UTC) |
Dependencies (61)
- libarchive (libarchive-gitAUR)
- qt6-5compat
- qt6-base (qt6-base-gitAUR, qt6-base-scrollfixAUR, qt6-base-scrollfixAUR, qt6-xcb-private-headers-scrollfixAUR, qt6-xcb-private-headers-scrollfixAUR, qt6-base-headlessAUR, qt6-base-hifpsAUR)
- qt6-shadertools
- qt6-webengine
- r (r-mklAUR)
- r-jaspacceptancesamplingAUR
- r-jaspanovaAUR
- r-jaspauditAUR
- r-jaspbainAUR
- r-jaspbaseAUR
- r-jaspbffAUR
- r-jaspbfpackAUR
- r-jaspbstsAUR
- r-jaspcircularAUR
- r-jaspcochraneAUR
- r-jaspdescriptivesAUR
- r-jaspdistributionsAUR
- r-jaspequivalencettestsAUR
- r-jaspfactorAUR
- Show 41 more dependencies...
Latest Comments
random_user commented on 2024-02-12 21:59 (UTC)
@cagriozkurt, thank you so much for your comment, it really helped through the install!
I think there are some system packages missing as dependencies. Namely,
glpk,patchelf,jags, andreadstat. ThejaspProcessmodule also depends on google's V8,v8-r<deleted-account> commented on 2023-03-02 13:44 (UTC)
Installing R packages from AUR always caused problems for me. There are so many dependencies so pacman wrappers produce 429 Too Many Requests errors due to AUR's rate limiting. Even if you manage to get past that, there are many packages with outdated source URLs so again, you're out of luck.
To solve this, I installed all the packages starting with
r-jaspfrom Github viadevtools::install_github()in R console which took care of the dependencies automatically:The packages were installed to
/usr/lib/R/libraryand I had to specify aGITHUB_PATvalue (viausethis::edit_r_environ()) to avoid being affected by GitHub's rate limiting.I then cloned this repo, removed R dependencies from the PKGBUILD, and ran
makepkg -si.This installed JASP but it gave errors saying that the Modules were not properly installed. To solve this, I had to run
ls /usr/lib/R/library/ | grep jasp | xargs -I {} ln -s /usr/lib/R/library /usr/lib/jasp-desktop/Modules/{}and everything worked perfectly.