Problème install dépendances version stable du 13 juin

Bonjour @Bad,

J’ai les mêmes soucis que @Micka41.

Lorsque j’exécute ta commande, j’ai le résultat suivant :

pi@pi-elec:~ $ ls -la /var/www/
total 12
drwxrwxr-x  3 root     root     4096 May 30 10:45 .
drwxr-xr-x 12 root     root     4096 May 30 10:45 ..
drwxrwxr-x 18 www-data www-data 4096 Jun 15 11:30 html

Ok, entre temps j’ai plus d’infos sur le pb, ça vient en effet de pip qui essaye de créer un dossier .cache dans /var/www/ sur lequel il n’a pas les droits, mais je n’arrive pas à reproduire sur mon système.

Je vais regarder pour désactiver ce cache si ça n’a pas trop d’impact ou sinon le forcer le répertoire du cache de pip dans le repertoire de jMQTT.

@Micka41,

Est-ce que tu veux bien tester la modification suivante sur ton système ?

Remettre le test que tu as enlevé précédemment dans jMQTT.class.php
Rajouter --no-cache-dir, dans ces deux fichiers, de la façon suivante :

------------------------- core/class/jMQTT.class.php --------------------------
@@ -1248,1 +1248,1 @@
-		elseif (exec(dirname(__FILE__) . '/../../resources/jmqttd/venv/bin/pip3 freeze --no-color -r '.dirname(__FILE__) . '/../../resources/python-requirements/requirements.txt 2>&1 >/dev/null | wc -l') > 0) {
+		elseif (exec(dirname(__FILE__) . '/../../resources/jmqttd/venv/bin/pip3 freeze --no-cache-dir --no-color -r '.dirname(__FILE__) . '/../../resources/python-requirements/requirements.txt 2>&1 >/dev/null | wc -l') > 0) {

--------------------------- resources/install_apt.sh ---------------------------
@@ -65,1 +65,1 @@
-try sudo -u www-data $BASEDIR/jmqttd/venv/bin/pip3 install -r $BASEDIR/python-requirements/requirements.txt
+try sudo -u www-data $BASEDIR/jmqttd/venv/bin/pip3 install --no-cache-dir -r $BASEDIR/python-requirements/requirements.txt

Les dépendances devraient être vu comme OK suite à cette modif.

L’exécution de la commande donne le resultat attendu, je fais un test dans le plugin.

1 « J'aime »

Plugin OK !

Merci !

Parfait, je passe la modif en beta et en stable.
Merci encore

@Domochip, tu peux forcer la synchro sur le Market Jeedom une fois que c’est fait ?

@dmoal, @turriert, @blablatus, pouvez-vous me confirmer que la nouvelle stable a règlé vos problèmes ?

1 « J'aime »

Bonjour,

Version stable installée hier soir… pas de soucis ! J’ai relancé une installation des dépendances pour vérifier, et ça fonctionne nickel ! Le plugin est de nouveau UP !

Merci beaucoup pour votre aide et surtout votre ré activité !

1 « J'aime »

Bonjour. Je viens d’installer la nouvelle version. Après avoir réinstallé les dépendances, tout a fonctionné parfaitment. Merci beaucoup.

1 « J'aime »

Merci pour le correctif.
Tout fonctionne normalement

1 « J'aime »

Bonjour.
Merci pour le correctif!
Cependant, depuis la dernière mise à jour, et même après la correctif, il existe toujours une erreur me concernant, et les dépendances ne peuvent pas être installées.

La version installé de Jeedom est v4.2.18 et de jMQTT v2022-06-15 20:59:26.

Log Debug jMQTT_dep :

======================================================================
== 16/06/2022 23:45:03 == Dependencies installation for jMQTT
======================================================================
== Should install Mosquitto: 1
[  5% ] : Synchronize the package index...
[  9% ] : Synchronize the package index : [  OK  ]
[ 10% ] : Install Mosquitto...
[ 19% ] : Install Mosquitto : [  OK  ]
[ 20% ] : Install Composer...
[ 24% ] : Install Composer : [  OK  ]
[ 25% ] : Install Ratchet PHP library...
[ 29% ] : Install Ratchet PHP library : [  OK  ]
[ 30% ] : Temporary fix of Ratchet PHP library (https://github.com/ratchetphp/RFC6455/pull/65)...
[ 34% ] : Temporary fix of Ratchet PHP library (https://github.com/ratchetphp/RFC6455/pull/65) : [  OK  ]
[ 35% ] : Install JsonPath-PHP library...
[ 39% ] : Install JsonPath-PHP library : [  OK  ]
[ 40% ] : Remove Composer...
[ 49% ] : Remove Composer : [  OK  ]
[ 50% ] : Install python3 venv and pip debian packages...
[ 59% ] : Install python3 venv and pip debian packages : ERROR
[ 60% ] : Create a python3 Virtual Environment...
[ 69% ] : Create a python3 Virtual Environment : ERROR
[ 70% ] : Install required python3 libraries in venv...
[ 89% ] : Install required python3 libraries in venv : ERROR
[ 90% ] : Run post_dependancy_install function...
[ 99% ] : Run post_dependancy_install function : [  OK  ]
[100% ] : Finished !
======================================================================
== KO == Installation Error
======================================================================
== ANALYSING ERRORS...
== NO KNOWN ERROR DETECTED
== Error in step : Install python3 venv and pip debian packages
== Line 59
== Command `sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-venv python3-pip' have an issue
== Return code is 100
== Error message :
Reading package lists...
Building dependency tree...
Reading state information...
Package python3-venv is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'python3-venv' has no installation candidate
======================================================================
== Error in step : Create a python3 Virtual Environment
== Line 62
== Command `sudo -u www-data python3 -m venv /var/www/html/plugins/jMQTT/resources/jmqttd/venv' have an issue
== Return code is 1
== Error message :
The virtual environment was not created successfully because ensurepip is not
available.  On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.
apt-get install python3-venv
You may need to use sudo with that command.  After installing the python3-venv
package, recreate your virtual environment.
Failing command: ['/var/www/html/plugins/jMQTT/resources/jmqttd/venv/bin/python3', '-Im', 'ensurepip', '--upgrade', '--default-pip']
======================================================================
== Error in step : Install required python3 libraries in venv
== Line 65
== Command `sudo -u www-data /var/www/html/plugins/jMQTT/resources/jmqttd/venv/bin/pip3 install --no-cache-dir -r /var/www/html/plugins/jMQTT/resources/python-requirements/requirements.txt' have an issue
== Return code is 1
== Error message :
sudo: /var/www/html/plugins/jMQTT/resources/jmqttd/venv/bin/pip3: command not found
======================================================================

J’ai bien essayé de réaliser la commande indiquée, en sudo

sudo apt-get install python3-venv

Mais j’obtient ce message:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python3-venv is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python3-venv' has no installation candidate

Voici ci-dessous des informations qui vous seront utiles:


J’utilise la Python 3.7.3

Suivant les indications présentées ici, la commande suivante:

sudo apt-get update
sudo apt-get install python3.7-venv

me donne un résultat identique:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python3.7-venv is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'python3.7-venv' has no installation candidate

alors que

sudo apt-get install python3-virtualenv

me donne

Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-virtualenv is already the newest version (15.1.0+ds-2+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded.

Quelqu’un a-t-il une idée ou suggestion?
Merci beaucoup de votre aide!

Hello, quelle est ta version de debian ?

Salut @nebz!
Ma version de debian est la suivante:

Distributor ID: Debian
Description:    Debian GNU/Linux 10 (buster)
Release:        10
Codename:       buster

Hello, c’est assez étrange, je regarde ça

Sur quoi tourne cette Debian ? (EDIT, vu : Matériels Jeedom: Odroid N2+)
De quand date ton install ?
Est-ce que le système est à jour ?
Que retourne la commande sudo apt update && apt list --upgradable ?

Quel est l’autre plugin sur ton Jeedom ?

(Il manque peut-être un coup de sudo apt upgrade, mais je veux être sur que c’est nécessaire avant de te le faire faire)

Merci de ton aide @Bad

Mon system tourne sous un Odroid N2+, mis en service depuis aout 2021.
Le système tournant dessus est Armbian 22.05.1 Buster with Linux 5.10.110-meson64

Est-ce que le système est à jour ?

Concernant Jeedom, oui (dernière version 4.2.18)
Concernant Debian, voir ci-dessous

Que retourne la commande sudo apt update && apt list --upgradable ?

Hit:1 http://www.deb-multimedia.org buster InRelease
Hit:2 http://deb.debian.org/debian buster InRelease
Hit:3 http://security.debian.org buster/updates InRelease
Hit:4 http://deb.debian.org/debian buster-updates InRelease
Hit:5 https://deb.nodesource.com/node_14.x buster InRelease
Hit:6 http://deb.debian.org/debian buster-backports InRelease
Hit:7 https://repo.mosquitto.org/debian buster InRelease
Hit:8 http://deb.debian.org/debian-security buster/updates InRelease
Hit:9 http://mirrors.xtom.de/armbian buster InRelease
Hit:10 https://repo.ebusd.eu/apt/default/buster buster InRelease
Reading package lists... Done
Building dependency tree
Reading state information... Done
87 packages can be upgraded. Run 'apt list --upgradable' to see them.
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'https://repo.mosquitto.org/debian buster InRelease' doesn't support architecture 'arm64'
Listing... Done
apache2-bin/oldstable 2.4.38-3+deb10u7 arm64 [upgradable from: 2.4.38-3+deb10u5]
apache2-data/oldstable,oldstable,oldstable 2.4.38-3+deb10u7 all [upgradable from: 2.4.38-3+deb10u5]
apache2-utils/oldstable 2.4.38-3+deb10u7 arm64 [upgradable from: 2.4.38-3+deb10u5]
apache2/oldstable 2.4.38-3+deb10u7 arm64 [upgradable from: 2.4.38-3+deb10u5]
bind9-host/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
dnsutils/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
dpkg/oldstable 1.19.8 arm64 [upgradable from: 1.19.7]
ffmpeg/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
gzip/oldstable 1.9-3+deb10u1 arm64 [upgradable from: 1.9-3]
libapache2-mod-php7.3/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
libavcodec58/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libavdevice58/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libavfilter7/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libavformat58/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libavresample4/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libavutil56/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libbind9-161/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libcups2/oldstable 2.2.10-6+deb10u6 arm64 [upgradable from: 2.2.10-6+deb10u4]
libdca0/oldstable 1:0.0.6-dmo1 arm64 [upgradable from: 0.0.6-1]
libdns-export1104/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libdns1104/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libexpat1-dev/oldstable 2.2.6-2+deb10u4 arm64 [upgradable from: 2.2.6-2+deb10u1]
libexpat1/oldstable 2.2.6-2+deb10u4 arm64 [upgradable from: 2.2.6-2+deb10u1]
libicu63/oldstable 63.1-6+deb10u2 arm64 [upgradable from: 63.1-6+deb10u1]
libirs161/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libisc-export1100/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libisc1100/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libisccc161/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libisccfg163/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
libldap-2.4-2/oldstable 2.4.47+dfsg-3+deb10u7 arm64 [upgradable from: 2.4.47+dfsg-3+deb10u6]
liblwres161/oldstable 1:9.11.5.P4+dfsg-5.1+deb10u7 arm64 [upgradable from: 1:9.11.5.P4+dfsg-5.1+deb10u5]
liblzma5/oldstable 5.2.4-1+deb10u1 arm64 [upgradable from: 5.2.4-1]
libnss3/oldstable 2:3.42.1-1+deb10u5 arm64 [upgradable from: 2:3.42.1-1+deb10u3]
libntfs-3g883/oldstable 1:2017.3.23AR.3-3+deb10u2 arm64 [upgradable from: 1:2017.3.23AR.3-3+deb10u1]
libpolkit-agent-1-0/oldstable 0.105-25+deb10u1 arm64 [upgradable from: 0.105-25]
libpolkit-backend-1-0/oldstable 0.105-25+deb10u1 arm64 [upgradable from: 0.105-25]
libpolkit-gobject-1-0/oldstable 0.105-25+deb10u1 arm64 [upgradable from: 0.105-25]
libpostproc55/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libsasl2-2/oldstable 2.1.27+dfsg-1+deb10u2 arm64 [upgradable from: 2.1.27+dfsg-1+deb10u1]
libsasl2-modules-db/oldstable 2.1.27+dfsg-1+deb10u2 arm64 [upgradable from: 2.1.27+dfsg-1+deb10u1]
libsmbclient/oldstable 2:4.9.5+dfsg-5+deb10u3 arm64 [upgradable from: 2:4.9.5+dfsg-5+deb10u1]
libssl-dev/oldstable 1.1.1n-0+deb10u2 arm64 [upgradable from: 1.1.1d-0+deb10u7]
libssl1.1/oldstable 1.1.1n-0+deb10u2 arm64 [upgradable from: 1.1.1d-0+deb10u7]
libswresample3/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libswscale5/oldstable 10:4.1.9-dmo0+deb10u1 arm64 [upgradable from: 10:4.1.6-dmo1+deb10u1]
libtiff5/oldstable 4.1.0+git191117-2~deb10u4 arm64 [upgradable from: 4.1.0+git191117-2~deb10u2]
libwbclient0/oldstable 2:4.9.5+dfsg-5+deb10u3 arm64 [upgradable from: 2:4.9.5+dfsg-5+deb10u1]
libxml2/oldstable 2.9.4+dfsg1-7+deb10u4 arm64 [upgradable from: 2.9.4+dfsg1-7+deb10u2]
mariadb-client/oldstable 1:10.3.34-0+deb10u1 all [upgradable from: 1:10.3.29-0+deb10u1]
mariadb-server/oldstable 1:10.3.34-0+deb10u1 all [upgradable from: 1:10.3.29-0+deb10u1]
mplayer/oldstable 4:1.4-dmo3+deb10u8 arm64 [upgradable from: 2:1.3.0-8+b4]
ntfs-3g/oldstable 1:2017.3.23AR.3-3+deb10u2 arm64 [upgradable from: 1:2017.3.23AR.3-3+deb10u1]
openssl/oldstable 1.1.1n-0+deb10u2 arm64 [upgradable from: 1.1.1d-0+deb10u7]
php7.3-cli/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-common/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-curl/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-dev/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-gd/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-imap/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-json/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-ldap/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-mbstring/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-mysql/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-opcache/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-readline/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-snmp/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-soap/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-xml/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-xmlrpc/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
php7.3-zip/oldstable 7.3.31-1~deb10u1 arm64 [upgradable from: 7.3.29-1~deb10u1]
policykit-1/oldstable 0.105-25+deb10u1 arm64 [upgradable from: 0.105-25]
python-lxml/oldstable 4.3.2-1+deb10u4 arm64 [upgradable from: 4.3.2-1+deb10u3]
python-pil/oldstable 5.4.1-2+deb10u3 arm64 [upgradable from: 5.4.1-2+deb10u2]
rsyslog/oldstable 8.1901.0-1+deb10u2 arm64 [upgradable from: 8.1901.0-1]
samba-common/oldstable,oldstable,oldstable 2:4.9.5+dfsg-5+deb10u3 all [upgradable from: 2:4.9.5+dfsg-5+deb10u1]
samba-libs/oldstable 2:4.9.5+dfsg-5+deb10u3 arm64 [upgradable from: 2:4.9.5+dfsg-5+deb10u1]
smbclient/oldstable 2:4.9.5+dfsg-5+deb10u3 arm64 [upgradable from: 2:4.9.5+dfsg-5+deb10u1]
snapd/oldstable 2.37.4-1+deb10u1 arm64 [upgradable from: 2.37.4-1+b1]
squashfs-tools/oldstable 1:4.3-12+deb10u2 arm64 [upgradable from: 1:4.3-12+deb10u1]
vim-common/oldstable 2:8.1.0875-5+deb10u2 all [upgradable from: 2:8.1.0875-5]
vim-runtime/oldstable 2:8.1.0875-5+deb10u2 all [upgradable from: 2:8.1.0875-5]
xvfb/oldstable 2:1.20.4-1+deb10u4 arm64 [upgradable from: 2:1.20.4-1+deb10u3]
xz-utils/oldstable 5.2.4-1+deb10u1 arm64 [upgradable from: 5.2.4-1]
zlib1g-dev/oldstable 1:1.2.11.dfsg-1+deb10u1 arm64 [upgradable from: 1:1.2.11.dfsg-1]
zlib1g/oldstable 1:1.2.11.dfsg-1+deb10u1 arm64 [upgradable from: 1:1.2.11.dfsg-1]
zsh-common/oldstable,oldstable,oldstable 5.7.1-1+deb10u1 all [upgradable from: 5.7.1-1]
zsh/oldstable 5.7.1-1+deb10u1 arm64 [upgradable from: 5.7.1-1]

Les autres plugins que j’ai sont les suivants:
Abeille, AutoLogin, Bluetooth Advertisement, Caméra, Data Transfert*, Dyndns, Energie, ESPeasy, Google agenda*, Google Cast, Harmony Hub, Héliotrope, Icônes, IFTTT, Jeedouino, JeeRss, JeeXplorer, jMQTT, Localisation et Trajet, MagicMirror²*, Mail, Mode*, Monitoring, Monitoring, MQTT*, Network, Octoprint, Philips Hue, PlayTTS, RFXcom, Script, Slack, Sonos controller, Speedtest, Telegram, Vigilance Météo*, Virtuel, Weather, Widget, Wifipower, Z-Wave, ZiGate*
` * : plugin inactif

Merci pour ces info, il n’est pas nécessaire de faire un apt upgrade à mon sens.

Je ne suis pas beaucoup avancé, mais on penche pour une incompatibilité entre certains packages.
Peux-tu me fournir les résultats des commandes suivantes dans un fichier txt stp :

apt list --installed |grep env
pip3 list --no-color | grep env

apt list --installed
pip3 list

Merci

Le problème est maintenant réglé.
Il s’avère qu’il me manquait une source (dans /etc/apt/sources.list).

Ainsi, sudo apt-get install python3-venv me donne:

Reading package lists... Done
Building dependency tree
Reading state information... Done
python3-venv is already the newest version (3.7.3-1).

Pour d’autres qui aurait un problème similaire, ma sources.list est la suivante:

deb [arch=amd64] http://deb.debian.org/debian/ buster main contrib non-free
#deb-src http://deb.debian.org/debian/ buster main contrib non-free

deb [arch=amd64] http://deb.debian.org/debian/ buster-updates main contrib non-free
#deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free

deb [arch=amd64] http://deb.debian.org/debian/ buster-backports main contrib non-free
#deb-src http://deb.debian.org/debian/ buster-backports main contrib non-free

deb [arch=amd64] http://security.debian.org/ buster/updates main contrib non-free
#deb-src http://security.debian.org/ buster/updates main contrib non-free

deb http://www.deb-multimedia.org buster main
#indication from https://debian.pkgs.org/10/multimedia-main-amd64/deb-multimedia-keyring_2016.8.1_all.deb.html
#and needs for Jeedom installation program (https://community.jeedom.com/t/installation-de-jeedom-sur-lodroid-$

# Debian Buster, mises à jour de sécurité + paquets non libres
deb [arch=arm64] http://deb.debian.org/debian-security/ buster/updates main contrib non-free
deb-src [arch=arm64] http://deb.debian.org/debian-security/ buster/updates main contrib non-free

Plus d’information Debian Facile, et les forums Jeedom discutant de l’installation sur OdroidN2 et OdroidC2.

Merci en tout cas @Bad et @nebz pour votre aide!

EDIT: @Bad Désolé, je n’ai vu ton message qu’après ma réponse. Si les informations que tu me demandes te sont nécessaire, je peux te les fournir.

2 « J'aime »

Hello,
Je n’aurais pas besoin des traces supplémentaires, ton problème étant réglé
Ravi que tu ais trouvé tout seul :wink:

PS : J’ai vu que tu as un soft windows qui fait des captures d’écran est les envoi en mqtt, sympa, de quoi s’agit t’il ? Tu as du voir que jmqtt les envoie en base64 vers jeedom maintenant, il y a peut être un widget à faire pour afficher l’image :shushing_face:

Happy MQTT :beer:

Ce sujet a été automatiquement fermé après 24 heures suivant le dernier commentaire. Aucune réponse n’est permise dorénavant.