GithubHelp home page GithubHelp logo

Comments (17)

crschnick avatar crschnick commented on June 7, 2024 1

Alright can you guys please try this build: https://github.com/xpipe-io/xpipe-ptb/releases/tag/1.7.14

If it works, I will create a full release soon as there are also a couple other breaking issues that need quick fixing.

from xpipe.

crschnick avatar crschnick commented on June 7, 2024 1

This is now fixed in 1.7.14 along with a couple of other important issues

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Yes since the latest update the installer now reports all required dependencies. It didn't do that before, that is why it only happens now probably.

For the .deb package, does that still occur after you run sudo apt update?

from xpipe.

AirMarty avatar AirMarty commented on June 7, 2024

Hi, same issue here after clicking on update version , happen on 2 different machine.
Les paquets suivants contiennent des dépendances non satisfaites : xpipe : Dépend: libgdk-pixbuf-2.0-0 mais il n'est pas installable E: Impossible de corriger les problèmes, des paquets défectueux sont en mode « garder en l'état ». Update failed ... result error at the end of automatic update.

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

What OS version are you running? libgdk-pixbuf-2.0-0 is a standard debian package: https://packages.debian.org/bullseye/libgdk-pixbuf-2.0-0 that should be available basically everywhere. That problem still occurs then after you refresh with sudo apt update before?

from xpipe.

dragonlost avatar dragonlost commented on June 7, 2024

Same problem here. It's my first installation of Xpipe. On Kubuntu 20.04 LTS (kernel 5.15.0-91)
I have exact same dependencies problem.
I checked I already installed this package.

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Let me investigate that then, I only tested on Ubuntu 22.04+

from xpipe.

dragonlost avatar dragonlost commented on June 7, 2024

No problem for 1.7.12 version

from xpipe.

AirMarty avatar AirMarty commented on June 7, 2024

Always same problem even when i manually check and install libgdk-pixbuf-2.0-0.

$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=20.04 DISTRIB_CODENAME=focal DISTRIB_DESCRIPTION="Ubuntu 20.04.6 LTS"

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Yes it seems like this is an issue with Ubuntu < 22. I think it has something to do with inconsistent package names. To fix this we have to switch to the transitional package: https://packages.debian.org/de/sid/libgdk-pixbuf2.0-0 (Note the missing -).

I will get a a temporary fixed version ready so you can try whether that fixes it for you.

from xpipe.

AirMarty avatar AirMarty commented on June 7, 2024

I teested both :

$ sudo dpkg -i xpipe-installer-linux-x86_64.deb 
(Lecture de la base de données... 502982 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de xpipe-installer-linux-x86_64.deb ...
Dépaquetage de xpipe (1.7.13-1) sur (1.7.13-1) ...
dpkg: des problèmes de dépendances empêchent la configuration de xpipe :
 xpipe dépend de libgdk-pixbuf-2.0-0 ; cependant :
  Le paquet libgdk-pixbuf-2.0-0 n'est pas installé.

dpkg: erreur de traitement du paquet xpipe (--install) :
 problèmes de dépendances - laissé non configuré
Traitement des actions différées (« triggers ») pour man-db (2.9.1-1) ...
Des erreurs ont été rencontrées pendant l'exécution :
 xpipe

Then :

$ sudo dpkg -i xpipe-installer-linux-x86_64.deb 
(Lecture de la base de données... 502982 fichiers et répertoires déjà installés.)
Préparation du dépaquetage de xpipe-installer-linux-x86_64.deb ...
Dépaquetage de xpipe (1.7.13-1) sur (1.7.13-1) ...
dpkg: des problèmes de dépendances empêchent la configuration de xpipe :
 xpipe dépend de libgdk-pixbuf-2.0-0 ; cependant :
  Le paquet libgdk-pixbuf-2.0-0 n'est pas installé.

dpkg: erreur de traitement du paquet xpipe (--install) :
 problèmes de dépendances - laissé non configuré
Traitement des actions différées (« triggers ») pour man-db (2.9.1-1) ...
Des erreurs ont été rencontrées pendant l'exécution :
 xpipe

I stay with 1.7.12 ;)

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Note that dpkg does not support installing dependencies of installers. So even with correct dependencies it would not work like that if one of them had to be installed. You should use sudo apt update && sudo apt install xpipe-installer-linux-x86_64.deb for that once I fixed the issue.

from xpipe.

AirMarty avatar AirMarty commented on June 7, 2024

Nope it doesnot work, it seems that apt not found my local file...?

Lecture des informations d'état... Fait  
46 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.  
Lecture des listes de paquets... Fait  
Construction de l'arbre des dépendances  
Lecture des informations d'état... Fait  
E: Impossible de trouver le paquet xpipe-installer-linux-x86_64.deb

Or :

sudo apt update && sudo apt install ./xpipe-installer-linux-x86_64.deb  
(...)
Note : sélection de « xpipe » au lieu de « ./xpipe-installer-linux-x86_64.deb »  
Certains paquets ne peuvent être installés. Ceci peut signifier  
que vous avez demandé l'impossible, ou bien, si vous utilisez  
la distribution unstable, que certains paquets n'ont pas encore  
été créés ou ne sont pas sortis d'Incoming.  
L'information suivante devrait vous aider à résoudre la situation :  
  
Les paquets suivants contiennent des dépendances non satisfaites :  
xpipe : Dépend: libgdk-pixbuf-2.0-0 mais il n'est pas installable  
E: Impossible de corriger les problèmes, des paquets défectueux sont en mode « garder en l'état ».

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

I think it has to be sudo apt ./install xpipe-installer-linux-x86_64.deb to indicate a local file.

I just pushed a commit to fix the package issue, so there should be a PTB version available shortly that should fix this properly.

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Edit: I did not pay attention. It obviously has to be sudo apt install ./xpipe-installer-linux-x86_64.deb. The build to fix this issue is a little bit delayed due to the CI runner having problems right now.

from xpipe.

AirMarty avatar AirMarty commented on June 7, 2024

ok no stress I use previous version till you release ;)

from xpipe.

crschnick avatar crschnick commented on June 7, 2024

Feel free to reopen if something does not work

from xpipe.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.