Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. Grafana
    5. Fritzbox mit Grafana visualisieren [Version 2022]

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Fritzbox mit Grafana visualisieren [Version 2022]

    This topic has been deleted. Only users with topic management privileges can see it.
    • Damrak2022
      Damrak2022 @crunchip last edited by

      @crunchip Ich habe es heute morgen irgendwie hinbekommen das Grafana wieder erreichbar ist. Dazu musste ich eine andere Installationsanleitung verwenden. Jetzt habe ich Grafana 7.4
      Also dachte ich mir ich wage mich nochmal an die Installation
      Nur bei dem Punkt wo ich den Befehl

      ./fritzinfluxdb.py
      

      eingebe komme ich nicht weiter. Da bekomme ich nämlich eine fehlende Directory angezeigt:

      pi@homebridge:~ $ ./fritzinfluxdb.py
      -bash: ./fritzinfluxdb.py: No such file or directory
      

      Ich vermute das meine Einstellungen in der .ini nicht korrekt sind:

      [influxdb]
      host = 127.0.0.1
      port = 8086
      username = bla
      password = blub
      database = db
      ssl = false
      verify_ssl = true
      measurement_name = fritzbox
      
      [fritzbox]
      host = 192.168.178.1
      username = Damrak2XXXX
      password = huu84m-XXXXXXXX
      # change to 49443 if you use ssl
      port = 49000
      timeout = 5
      ssl = false
      # interval to request data in seconds
      #interval = 10
      
      

      Und bevor ich mir nun wieder alles komplett zerschieße, habe ich mir gedacht es ist besser zu warten, bis jemand mit Ahnung mir sagt was ich machen müsste damit es klappt

      J crunchip 2 Replies Last reply Reply Quote 0
      • J
        jr @Damrak2022 last edited by jr

        @damrak2022 Nein, die py-Datei darf nicht ausgeführt werden oder sie existiert nicht.

        mach mal ls und schau, ob die Datei da ist, wenn ja, dann ausführbar machen, z.B.

        chmod 777 ./fritzinfluxdb.py
        

        oder Du startest sie mit bash:

        bash ./fritzinfluxdb.py
        

        Sofern in der ersten Zeile der richtige interpreter steht, sollte das dann laufen.

        Wenn sie nicht da ist, bist Du ggf. im falschen Verzeichnis?!?

        Damrak2022 1 Reply Last reply Reply Quote 0
        • crunchip
          crunchip Forum Testing Most Active @Damrak2022 last edited by

          @damrak2022 denke du bist im falschen Verzeichnis
          wenn ich es richtig gesehen habe, müsste es in /opt/fritzinfluxdb/ sein

          1 Reply Last reply Reply Quote 0
          • Damrak2022
            Damrak2022 @jr last edited by

            @jr Bei ls bekomme ich das:

            pi@homebridge:/opt/fritzinfluxdb $ ls
            docker-compose.yml        fritzinfluxdb.ini.save.7
            Dockerfile                fritzinfluxdb.ini.save.8
            fritzinfluxdb.ini         fritzinfluxdb.ini.save.9
            fritzinfluxdb.ini-sample  fritzinfluxdb.py
            fritzinfluxdb.ini.save    fritzinfluxdb.service
            fritzinfluxdb.ini.save.1  grafana_dashboard_fritzbox.json
            fritzinfluxdb.ini.save.2  grafana_dashboard.jpg
            fritzinfluxdb.ini.save.3  LICENSE.txt
            fritzinfluxdb.ini.save.4  README.md
            fritzinfluxdb.ini.save.5  requirements.txt
            fritzinfluxdb.ini.save.6
            

            Und das kommt hier:

            pi@homebridge:/opt/fritzinfluxdb $ bash ./fritzinfluxdb.py
            ./fritzinfluxdb.py: line 3: self_description: command not found
            ./fritzinfluxdb.py: line 9: from: command not found
            ./fritzinfluxdb.py: line 10: import: command not found
            ./fritzinfluxdb.py: line 11: import: command not found
            ./fritzinfluxdb.py: line 12: import: command not found
            ./fritzinfluxdb.py: line 13: import: command not found
            ./fritzinfluxdb.py: line 14: import: command not found
            ./fritzinfluxdb.py: line 15: from: command not found
            ./fritzinfluxdb.py: line 18: import: command not found
            ./fritzinfluxdb.py: line 19: import: command not found
            ./fritzinfluxdb.py: line 22: __version__: command not found
            ./fritzinfluxdb.py: line 23: __version_date__: command not found
            ./fritzinfluxdb.py: line 24: __description__: command not found
            ./fritzinfluxdb.py: line 25: __license__: command not found
            ./fritzinfluxdb.py: line 29: running: command not found
            ./fritzinfluxdb.py: line 30: syntax error near unexpected token `('
            ./fritzinfluxdb.py: line 30: `default_config = os.path.join(os.path.dirname(__file__), 'fritzinfluxdb.ini')'
            

            Kannst Du mir hier bitte weiterhelfen, damit ich das zum laufen bekomme.

            Thomas Braun 1 Reply Last reply Reply Quote 0
            • Thomas Braun
              Thomas Braun Most Active @Damrak2022 last edited by

              @damrak2022

              Poste das Skript mal. Dann könnte man mal schauen was da für commands nicht gefunden werden.
              Vermutlich fehlen da python-Pakete.

              Damrak2022 1 Reply Last reply Reply Quote 0
              • Damrak2022
                Damrak2022 @Thomas Braun last edited by Damrak2022

                @thomas-braun Sorry, wie mache ich das?

                Ich bin nach der Anleitung vorgegangen:
                https://blog.gwarg.de/2022/01/22/fritzbox-mit-grafana-visualisieren-version-2022/

                Thomas Braun 2 Replies Last reply Reply Quote 0
                • Thomas Braun
                  Thomas Braun Most Active @Damrak2022 last edited by

                  @damrak2022

                  cat fritzinfluxdb.py
                  
                  1 Reply Last reply Reply Quote 0
                  • Thomas Braun
                    Thomas Braun Most Active @Damrak2022 last edited by

                    @damrak2022

                    python --version
                    

                    liefert was?

                    Damrak2022 1 Reply Last reply Reply Quote 0
                    • Damrak2022
                      Damrak2022 @Thomas Braun last edited by

                      @thomas-braun sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                      python --version

                      pi@homebridge:/opt/fritzinfluxdb $ python --version
                      Python 2.7.18
                      
                      Thomas Braun 1 Reply Last reply Reply Quote 0
                      • Thomas Braun
                        Thomas Braun Most Active @Damrak2022 last edited by Thomas Braun

                        @damrak2022

                        Hatte ich mir fast gedacht.

                        sudo apt update
                        sudo apt install python-is-python3
                        python --version
                        

                        Vermutlich funktioniert es danach.

                        Damrak2022 1 Reply Last reply Reply Quote 0
                        • Damrak2022
                          Damrak2022 @Thomas Braun last edited by Damrak2022

                          @thomas-braun sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                          python --version

                          pi@homebridge:~ $ sudo apt update
                          Get:1 http://archive.raspberrypi.org/debian bullseye InRelease [23.7 kB]
                          Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                          Hit:3 https://repos.influxdata.com/debian bullseye InRelease
                          Hit:4 https://packages.grafana.com/enterprise/deb stable InRelease
                          Hit:5 https://packages.grafana.com/oss/deb stable InRelease
                          Hit:6 https://deb.nodesource.com/node_14.x bullseye InRelease
                          Hit:7 https://archive.raspbian.org/raspbian buster InRelease
                          Get:8 http://archive.raspberrypi.org/debian bullseye/main armhf Packages [279 kB]
                          Hit:9 https://packagecloud.io/ookla/speedtest-cli/debian bullseye InRelease
                          Fetched 302 kB in 7s (42.6 kB/s)
                          Reading package lists... Done
                          Building dependency tree... Done
                          Reading state information... Done
                          5 packages can be upgraded. Run 'apt list --upgradable' to see them.
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:3
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:4
                          W: Target Packages (main/binary-armhf/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Translations (main/i18n/Translation-en_GB) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/grafana.list:2 and /etc/apt/sources.list.d/grafana.list:5
                          pi@homebridge:~ $ sudo apt install python-is-python3
                          Reading package lists... Done
                          Building dependency tree... Done
                          Reading state information... Done
                          The following packages were automatically installed and are no longer required:
                            libpython2-dev libpython2-stdlib libpython2.7 libpython2.7-dev
                            libpython2.7-minimal libpython2.7-stdlib python2 python2-dev python2-minimal
                            python2.7 python2.7-dev python2.7-minimal
                          Use 'sudo apt autoremove' to remove them.
                          The following packages will be REMOVED:
                            python-dev-is-python2 python-is-python2
                          The following NEW packages will be installed:
                            python-is-python3
                          0 upgraded, 1 newly installed, 2 to remove and 5 not upgraded.
                          Need to get 2,800 B of archives.
                          After this operation, 15.4 kB disk space will be freed.
                          Do you want to continue? [Y/n] y
                          Get:1 http://ftp.halifax.rwth-aachen.de/raspbian/raspbian bullseye/main armhf python-is-python3 all 3.9.2-1 [2,800 B]
                          Fetched 2,800 B in 1s (5,450 B/s)
                          (Reading database ... 68564 files and directories currently installed.)
                          Removing python-dev-is-python2 (2.7.18-9) ...
                          Removing python-is-python2 (2.7.18-9) ...
                          Selecting previously unselected package python-is-python3.
                          (Reading database ... 68552 files and directories currently installed.)
                          Preparing to unpack .../python-is-python3_3.9.2-1_all.deb ...
                          Unpacking python-is-python3 (3.9.2-1) ...
                          Setting up python-is-python3 (3.9.2-1) ...
                          Processing triggers for man-db (2.9.4-2) ...
                          pi@homebridge:~ $ python --version
                          Python 3.9.2
                          pi@homebridge:~ $ ./fritzinfluxdb.py
                          -bash: ./fritzinfluxdb.py: No such file or directory
                          pi@homebridge:~ $ cd /opt/influxdb
                          -bash: cd: /opt/influxdb: No such file or directory
                          pi@homebridge:~ $ cd /opt/fritzinfluxdb
                          pi@homebridge:/opt/fritzinfluxdb $ ./fritzinfluxdb.py
                          Traceback (most recent call last):
                            File "/opt/fritzinfluxdb/./fritzinfluxdb.py", line 18, in <module>
                              import fritzconnection
                          ModuleNotFoundError: No module named 'fritzconnection'
                          pi@homebridge:/opt/fritzinfluxdb $
                          

                          Das Update hat funktionier, aber der Befehl laut Anleitung nicht (Zeile 79)

                          Thomas Braun crunchip 2 Replies Last reply Reply Quote 0
                          • Thomas Braun
                            Thomas Braun Most Active @Damrak2022 last edited by

                            @damrak2022 sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                            /etc/apt/sources.list.d/grafana.list

                            Räum die mal auf.
                            Da sind Doubletten drin.

                            Damrak2022 1 Reply Last reply Reply Quote 0
                            • Damrak2022
                              Damrak2022 @Thomas Braun last edited by

                              @thomas-braun Sorry Thomas, da sind meine Kenntnisse noch zu gering. We räume ich das auf?

                              Thomas Braun 2 Replies Last reply Reply Quote 0
                              • Thomas Braun
                                Thomas Braun Most Active @Damrak2022 last edited by

                                @damrak2022

                                sudo nano /etc/apt/sources.list.d/grafana.list
                                

                                Jede Quelle darf da nur einfach drin stehen.

                                1 Reply Last reply Reply Quote 0
                                • Thomas Braun
                                  Thomas Braun Most Active @Damrak2022 last edited by

                                  @damrak2022

                                  Wenn die Datei richtig ist:

                                  sudo apt update
                                  sudo apt autoremove
                                  sudo apt full-upgrade
                                  
                                  Damrak2022 1 Reply Last reply Reply Quote 0
                                  • crunchip
                                    crunchip Forum Testing Most Active @Damrak2022 last edited by

                                    @damrak2022 sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                                    pi@homebridge:/opt/fritzinfluxdb $ ./fritzinfluxdb.py Traceback (most recent call last): File "/opt/fritzinfluxdb/./fritzinfluxdb.py", line 18, in <module> import fritzconnection ModuleNotFoundError: No module named 'fritzconnection' pi@homebridge:/opt/fritzinfluxdb $

                                    also bist du doch da im richtigen Verzeichnis, pi@homebridge:/opt/fritzinfluxdb $ ./fritzinfluxdb.py
                                    so wie ich das lese, fehlt dir fritzconnection

                                    pip install fritzconnection
                                    
                                    Damrak2022 1 Reply Last reply Reply Quote 0
                                    • Damrak2022
                                      Damrak2022 @Thomas Braun last edited by Damrak2022

                                      @thomas-braun sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                                      sudo apt full-upgrade

                                      pi@homebridge:~ $ sudo nano /etc/apt/sources.list.d/grafana.list
                                      pi@homebridge:~ $ sudo apt update
                                      Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
                                      Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                                      Hit:3 https://packages.grafana.com/oss/deb stable InRelease
                                      Hit:4 https://repos.influxdata.com/debian bullseye InRelease
                                      Hit:5 https://deb.nodesource.com/node_14.x bullseye InRelease
                                      Hit:6 https://archive.raspbian.org/raspbian buster InRelease
                                      Hit:7 https://packagecloud.io/ookla/speedtest-cli/debian bullseye InRelease
                                      Reading package lists... Done
                                      Building dependency tree... Done
                                      Reading state information... Done
                                      5 packages can be upgraded. Run 'apt list --upgradable' to see them.
                                      pi@homebridge:~ $ sudo apt autoremove
                                      Reading package lists... Done
                                      Building dependency tree... Done
                                      Reading state information... Done
                                      The following packages will be REMOVED:
                                        libpython2-dev libpython2-stdlib libpython2.7 libpython2.7-dev
                                        libpython2.7-minimal libpython2.7-stdlib python2 python2-dev python2-minimal
                                        python2.7 python2.7-dev python2.7-minimal
                                      0 upgraded, 0 newly installed, 12 to remove and 5 not upgraded.
                                      After this operation, 27.2 MB disk space will be freed.
                                      Do you want to continue? [Y/n] y
                                      (Reading database ... 68557 files and directories currently installed.)
                                      Removing python2-dev (2.7.18-3) ...
                                      Removing libpython2-dev:armhf (2.7.18-3) ...
                                      Removing python2 (2.7.18-3) ...
                                      Removing libpython2-stdlib:armhf (2.7.18-3) ...
                                      Removing python2.7-dev (2.7.18-8) ...
                                      Removing libpython2.7-dev:armhf (2.7.18-8) ...
                                      Removing libpython2.7:armhf (2.7.18-8) ...
                                      Removing python2.7 (2.7.18-8) ...
                                      Removing libpython2.7-stdlib:armhf (2.7.18-8) ...
                                      Removing python2-minimal (2.7.18-3) ...
                                      Removing python2.7-minimal (2.7.18-8) ...
                                      Unlinking and removing bytecode for runtime python2.7
                                      Removing libpython2.7-minimal:armhf (2.7.18-8) ...
                                      Processing triggers for man-db (2.9.4-2) ...
                                      Processing triggers for mailcap (3.69) ...
                                      Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ...
                                      pi@homebridge:~ $ sudo apt full-upgrade
                                      Reading package lists... Done
                                      Building dependency tree... Done
                                      Reading state information... Done
                                      Calculating upgrade... Done
                                      The following packages will be upgraded:
                                        libraspberrypi-bin libraspberrypi-dev libraspberrypi-doc libraspberrypi0
                                        pi-bluetooth
                                      5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
                                      Need to get 501 kB of archives.
                                      After this operation, 5,120 B of additional disk space will be used.
                                      Do you want to continue? [Y/n] y
                                      Get:1 http://archive.raspberrypi.org/debian bullseye/main armhf libraspberrypi-dev armhf 1:2+git20220324~090146+c4fd1b8-1 [177 kB]
                                      Get:2 http://archive.raspberrypi.org/debian bullseye/main armhf libraspberrypi-bin armhf 1:2+git20220324~090146+c4fd1b8-1 [149 kB]
                                      Get:3 http://archive.raspberrypi.org/debian bullseye/main armhf libraspberrypi0 armhf 1:2+git20220324~090146+c4fd1b8-1 [167 kB]
                                      Get:4 http://archive.raspberrypi.org/debian bullseye/main armhf libraspberrypi-doc all 1:2+git20220324~090146+c4fd1b8-1 [1,908 B]
                                      Get:5 http://archive.raspberrypi.org/debian bullseye/main armhf pi-bluetooth all 0.1.19 [5,764 B]
                                      Fetched 501 kB in 0s (1,731 kB/s)
                                      Reading changelogs... Done
                                      (Reading database ... 67657 files and directories currently installed.)
                                      Preparing to unpack .../libraspberrypi-dev_1%3a2+git20220324~090146+c4fd1b8-1_armhf.deb ...
                                      Unpacking libraspberrypi-dev (1:2+git20220324~090146+c4fd1b8-1) over (1:2+git20211125~155417+14b90ff-3) ...
                                      Preparing to unpack .../libraspberrypi-bin_1%3a2+git20220324~090146+c4fd1b8-1_armhf.deb ...
                                      Unpacking libraspberrypi-bin (1:2+git20220324~090146+c4fd1b8-1) over (1:2+git20211125~155417+14b90ff-3) ...
                                      Preparing to unpack .../libraspberrypi0_1%3a2+git20220324~090146+c4fd1b8-1_armhf.deb ...
                                      Unpacking libraspberrypi0:armhf (1:2+git20220324~090146+c4fd1b8-1) over (1:2+git20211125~155417+14b90ff-3) ...
                                      Preparing to unpack .../libraspberrypi-doc_1%3a2+git20220324~090146+c4fd1b8-1_all.deb ...
                                      Unpacking libraspberrypi-doc (1:2+git20220324~090146+c4fd1b8-1) over (1:2+git20211125~155417+14b90ff-3) ...
                                      Preparing to unpack .../pi-bluetooth_0.1.19_all.deb ...
                                      Unpacking pi-bluetooth (0.1.19) over (0.1.18) ...
                                      Setting up pi-bluetooth (0.1.19) ...
                                      Setting up libraspberrypi0:armhf (1:2+git20220324~090146+c4fd1b8-1) ...
                                      Setting up libraspberrypi-bin (1:2+git20220324~090146+c4fd1b8-1) ...
                                      Setting up libraspberrypi-dev (1:2+git20220324~090146+c4fd1b8-1) ...
                                      Setting up libraspberrypi-doc (1:2+git20220324~090146+c4fd1b8-1) ...
                                      Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u2) ...
                                      Processing triggers for man-db (2.9.4-2) ...
                                      pi@homebridge:~ $
                                      
                                      
                                      
                                      pi@homebridge:/opt/fritzinfluxdb $ ./fritzinfluxdb.py
                                      Traceback (most recent call last):
                                        File "/opt/fritzinfluxdb/./fritzinfluxdb.py", line 18, in <module>
                                          import fritzconnection
                                      ModuleNotFoundError: No module named 'fritzconnection'
                                      pi@homebridge:/opt/fritzinfluxdb $
                                      
                                      Thomas Braun 1 Reply Last reply Reply Quote 0
                                      • Thomas Braun
                                        Thomas Braun Most Active @Damrak2022 last edited by

                                        @damrak2022

                                        Da fehlt wie @crunchip (und die verlinkte Anleitung) schreibt

                                        pip install fritzconnection
                                        
                                        1 Reply Last reply Reply Quote 0
                                        • Damrak2022
                                          Damrak2022 @crunchip last edited by

                                          @crunchip sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                                          pip

                                          pi@homebridge:/opt/fritzinfluxdb $ pip install fritzconnection
                                          Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
                                          Requirement already satisfied: fritzconnection in /home/pi/.local/lib/python3.9/site-packages (1.3.3)
                                          Requirement already satisfied: requests>=2.22.0 in /usr/local/lib/python3.9/dist-packages (from fritzconnection) (2.22.0)
                                          Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /usr/local/lib/python3.9/dist-packages (from requests>=2.22.0->fritzconnection) (1.25.11)
                                          Requirement already satisfied: idna<2.9,>=2.5 in /usr/local/lib/python3.9/dist-packages (from requests>=2.22.0->fritzconnection) (2.8)
                                          Requirement already satisfied: certifi>=2017.4.17 in /usr/lib/python3/dist-packages (from requests>=2.22.0->fritzconnection) (2020.6.20)
                                          Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.9/dist-packages (from requests>=2.22.0->fritzconnection) (3.0.4)
                                          pi@homebridge:/opt/fritzinfluxdb $ ./fritzinfluxdb.py
                                          Traceback (most recent call last):
                                            File "/opt/fritzinfluxdb/./fritzinfluxdb.py", line 18, in <module>
                                              import fritzconnection
                                          ModuleNotFoundError: No module named 'fritzconnection'
                                          pi@homebridge:/opt/fritzinfluxdb $
                                          
                                          Thomas Braun crunchip 2 Replies Last reply Reply Quote 0
                                          • Thomas Braun
                                            Thomas Braun Most Active @Damrak2022 last edited by

                                            @damrak2022 sagte in Fritzbox mit Grafana visualisieren [Version 2022]:

                                            Requirement already satisfied: fritzconnection in /home/pi/.local/lib/python3.9/site-package

                                            Ich vermute, das liegt in /home/pi/.local falsch.
                                            Von python hab ich aber offen gesagt nicht viel Ahnung.
                                            Weiß nicht ob das da einfach weggelöscht werden kann oder ob das per

                                            pip uninstall fritzconnection
                                            

                                            Im Home von pi zu deinstallieren ist.

                                            Damrak2022 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            1.0k
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            11
                                            143
                                            13422
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo