web-dev-qa-db-fra.com

Comment installer Popcorn Time en utilisant l'installateur à partir de son site officiel?

Comment installez-vous Popcorntime Beta sur Linux? La version bêta est un fichier tar.xz qui est téléchargé et qui ne s'installe pas automatiquement lorsque l'utilisateur clique dessus, contrairement aux versions Windows et Mac. L'installation de programmes sous Linux n'est pas facile pour l'utilisateur moyen non avancé s'il ne s'agit pas d'un fichier à installation automatique ou s'il n'est pas disponible via le Centre de logiciel Ubuntu.

17
pibomarco

Réponse mise à jour: juin 2019

  1. Télécharger PopCorn Time pour Linux .
  2. Ouvrir un terminal (Ctrl+Alt+T ):

    cd ~/Downloads
    Sudo mkdir /opt/popcorntime
    Sudo tar -xf Popcorn-Time-*.tar.xz -C /opt/popcorntime
    

    (Vous pouvez maintenant exécuter Popcorntime avec :)

    /opt/popcorntime/Popcorn-Time
    
  3. Créer le lanceur d'application

    Sudo ln -sf /opt/popcorntime/Popcorn-Time /usr/bin/Popcorn-Time
    Sudo gedit /usr/share/applications/popcorntime.desktop
    

    Et entrez le contenu suivant:

    [Desktop Entry]
    Version=1.0
    Type=Application
    Terminal=false
    Name=PopCorn Time
    Exec=/opt/popcorntime/Popcorn-Time
    Icon=/opt/popcorntime/src/app/images/icon.png
    Categories=Application;
    
33
hg8