Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    File2 is not a valid CodeChannel

    Scheduled Pinned Locked Moved
    DSF Development
    5
    11
    513
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Ant1undefined
      Ant1
      last edited by Ant1

      Ahaaa, I managed to see wher the issue comes from !

      It seems like File2 was added in DSF 3.5, and I have a mismatch between the DSF version and the python bindings.

      To try and fix that, I added the following requirement in the plugin.json file:

        "sbcPythonDependencies": [..., "dsf-python>=3.5.0.2rc2"],
      

      But the plugin still fails, so I have the impression that the dsf-python package is not installed with the correct version.

      Ant1undefined 1 Reply Last reply Reply Quote 0
      • Ant1undefined
        Ant1 @Ant1
        last edited by

        Looking at the installation code from the Duet Software Framework repository, I feel like that this line might be wrong, with the comparison inverted:

        comparison = 'version("' + installedVersion + '")' + mCompare + 'version("' + mVersion + '")' # version numbers are strings
        

        https://github.com/Duet3D/DuetSoftwareFramework/blob/04486410a79a75e443ea9f81def4c55b6d8b35b1/pkg/common/duetpluginservice/opt/dsf/bin/pip3_install.py#L125C87-L125C95

        Could this come from here ?

        jay_s_ukundefined 1 Reply Last reply Reply Quote 0
        • jay_s_ukundefined
          jay_s_uk @Ant1
          last edited by

          @Ant1 one for @chrishamm

          Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

          chrishammundefined 1 Reply Last reply Reply Quote 0
          • chrishammundefined
            chrishamm administrators @jay_s_uk
            last edited by

            @stuartofmt any idea?

            Duet software engineer

            Ant1undefined 1 Reply Last reply Reply Quote 0
            • Ant1undefined
              Ant1 @chrishamm
              last edited by Ant1

              @chrishamm @stuartofmt I also find a bit dangerous / weird to use exec(...) to compare the versions, as it can very easily lead to code injection, even though it is probably not the intent of people writing plugins.
              Edit: the allowed characters are limited (for example, no parentheses), so this is probably not possible.

              Falcounetundefined stuartofmtundefined 2 Replies Last reply Reply Quote 1
              • Falcounetundefined
                Falcounet @Ant1
                last edited by

                @Ant1 @chrishamm @stuartofmt I think the issue here is that the version of dsf-python is flagged as beta (rc) and pip3 install dsf-python>=version installs the last stable version.
                To make it to work, you either need to use equal : pip3 install dsf-python==version or to add the --pre argument : pip3 install --pre dsf-python>=version although, I'm not sure this is recommended as it may install unwanted beta versions.

                1 Reply Last reply Reply Quote 0
                • stuartofmtundefined
                  stuartofmt @Ant1
                  last edited by

                  @Ant1 @chrishamm @Falcounet

                  Sorry - for some reason I have not been getting notifications about this thread until today.

                  I will take a look at the installation script to see if it can be improved but ...

                  Please note that it's all a bit "vague". By that I mean there is no sure-fire way to check versions across all libraries. It depends too much on how the author chose to identify (or not) versions.

                  Regarding the use of exec. I was being a bit lazy but at the same time its limited to calling version. I'll take a closer look.

                  stuartofmtundefined 1 Reply Last reply Reply Quote 0
                  • stuartofmtundefined
                    stuartofmt @stuartofmt
                    last edited by stuartofmt

                    @chrishamm @Falcounet

                    It looks like I have some work to do. I've not dug deeply into it yet but it seems Bookworm does not like pip3 and would prefer / needs to use pipx.
                    I can check versions of Debian and make the appropriate differences transparent to the install program. I just need a few days to carve out some spare time and then it will mostly be testing.

                    EDIT: Looks like using apt is the prefered way ...

                    If I'm missing something obvious here, that you have already encountered / resolved, please let me know.

                    stuartofmtundefined 1 Reply Last reply Reply Quote 0
                    • stuartofmtundefined
                      stuartofmt @stuartofmt
                      last edited by

                      @chrishamm @Falcounet

                      @chrishamm @Falcounet

                      It looks like I have some work to do. I've not dug deeply into it yet but it seems Bookworm does not like pip3 and would prefer / needs to use pipx.
                      I can check versions of Debian and make the appropriate differences transparent to the install program. I just need a few days to carve out some spare time and then it will mostly be testing.

                      EDIT: Looks like using apt is the prefered way ...

                      If I'm missing something obvious here, that you have already encountered / resolved, please let me know.

                      I've created a chatroom to take any implementation discussion off-line. I'm progressing on the basis of providing each python plugin with its own virtual environment.

                      1 Reply Last reply Reply Quote 1
                      • chrishammundefined
                        chrishamm administrators @Ant1
                        last edited by

                        @Ant1 You can now install the python3-dsf-python Debian package or reference it in your plugin provided you're on v3.5 or newer. This package was gratefully provided by @Falcounet.

                        Duet software engineer

                        1 Reply Last reply Reply Quote 1
                        • First post
                          Last post
                        Unless otherwise noted, all forum content is licensed under CC-BY-SA