What software have you found particularly frustrating or difficult to configure on Linux?

    • DasFaultier@sh.itjust.works
      link
      fedilink
      arrow-up
      5
      ·
      9 hours ago

      I have limited Python experience, but I always thought that’s what virtualenvs and requirements.txt files are for? When I used those, I found it easy enough to use.

    • JustTesting@lemmy.hogru.ch
      link
      fedilink
      arrow-up
      3
      ·
      edit-2
      8 hours ago

      pyenv and pyenv-virtualenv together solves this for me. Virtualenv with specific python versions that work together well with other tools like pip or poetry.

      It boils down to something like

      $ pyenv install 3.12.7
      $ pyenv virtualenv 3.12.7 myenv
      $ pyenv activate myenv
      

      and at that point you can do regular python stuff like pip installing etc.

      • JubilantJaguar@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        4 hours ago

        If you’re having to type out version numbers in your commands, something is broken.

        I ended up having to roll my own shell script wrapper to bring some sanity to Python.