Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)KU
Posts
1
Comments
277
Joined
1 yr. ago

  • I don't quite agree that for a beginer being presented with

     
            sudo apt update && \
          sudo apt install --yes software-properties-common && \
          sudo add-apt-repository --yes ppa:deadsnakes/ppa && \
          sudo apt install --yes python3.9
    
    
      

    is better than

     
            sudo apt update
        sudo apt install software-properties-common
        sudo add-apt-repository ppa:deadsnakes/ppa
        sudo apt install python3.9
    
    
      

    All those symbols and "--yes" used to feel quite cryptic to me.