Created
April 9, 2020 08:23
-
-
Save sneakers-the-rat/2e6692cc8be37962c7b3693f347a9f5b to your computer and use it in GitHub Desktop.
install jamovi on chromebook simpler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install -y flatpak | |
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
flatpak install -y --user org.jamovi.jamovi | |
# create a terminal command to launch jamovi | |
echo -e "alias jamovi='flatpak run org.jamovi.jamovi --disable-gpu'" >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment