Package Details: jasp-desktop 0.18.3-1

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: AGPL3
Provides: jasp
Submitter: BioArchLinuxBot
Maintainer: BioArchLinuxBot
Last Packager: BioArchLinuxBot
Votes: 2
Popularity: 0.017038
First Submitted: 2022-06-07 01:21 (UTC)
Last Updated: 2024-01-12 12:40 (UTC)

Required by (0)

Sources (2)

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, and readstat. The jaspProcess module 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-jasp from Github via devtools::install_github() in R console which took care of the dependencies automatically:

devtools::install_github(
    c(
        "jasp-stats/jaspacceptancesampling",
        "jasp-stats/jaspanova", "jasp-stats/jaspaudit",
        "jasp-stats/jaspbain", "jasp-stats/jaspbase",
        "jasp-stats/jaspbsts", "jasp-stats/jaspcircular",
        "jasp-stats/jaspcochrane", "jasp-stats/jaspdescriptives",
        "jasp-stats/jaspdistributions",
        "jasp-stats/jaspequivalencettests",
        "jasp-stats/jaspfactor", "jasp-stats/jaspfrequencies",
        "jasp-stats/jaspgraphs", "jasp-stats/jaspjags",
        "jasp-stats/jasplearnbayes", "jasp-stats/jaspmachinelearning",
        "jasp-stats/jaspmetaanalysis", "jasp-stats/jaspmixedmodels",
        "jasp-stats/jaspnetwork", "jasp-stats/jaspprophet",
        "jasp-stats/jaspqualitycontrol",
        "jasp-stats/jaspregression", "jasp-stats/jaspreliability",
        "jasp-stats/jaspsem", "jasp-stats/jaspsummarystatistics",
        "jasp-stats/jasptools", "jasp-stats/jaspttests",
        "jasp-stats/jaspvisualmodeling"
    )
)

The packages were installed to /usr/lib/R/library and I had to specify a GITHUB_PAT value (via usethis::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.