• 1 Post
  • 46 Comments
Joined 1 year ago
cake
Cake day: June 7th, 2023

help-circle






  • First off, cause you are programming under windows, a lot of things will be harder for you. As seen on your problems with Python.
    Most Linux installs have it right from the get-go and everything else is as simple. So giving directions for developers on other platforms might be much easier than what you had to go through. (Maybe use WSL?)

    Let’s get to your real question: How does one organize dependencies in a way easy for new contributors?
    Since you will use Python, I will use that as example.

    Most languages have a way to automagically import dependencies. Python has the requirements.txt file. Installing dependencies is then really easy. It is also a widely known way to do that, has lots of explanation online etc. so seasoned pythoneers will know what to do and younglings will get to know a good standard right away.

    Bonus tip: If you don’t have a GUI library yet, maybe also search for game engines. They provide all the necessary tools as well, oftentimes have good GUI add-ins and are (mostly) for all mayor platforms.













  • Sorry, but this guide is all over the place.

    You mention Arch before other distros and never even explain what a distros is (e.g. ‘a flavor of Linux with a choice of preinstalled software’).

    Then you say that it’s a beginners and not an advanced tutorial, but mention advanced distros.

    Also your reasons for the beginner distros are not well written:

    1. Fedora mentions “rightful backlash against the company”
    2. Linux Mint “I haven’t used”
    3. Pop OS “shares some issues”

    Why take one of them? They all sound difficult or weird. (to a newby reader)

    Then the part about Ubuntu and Manjaro which is longer than the 3 distros you recommend. This has major “Linux fanboy bashing other Linux fanboys” vibes.

    The rest I really liked, maybe replace “this era” with “its era”.



  • It has to do with Linux.

    Linux itself is not a fully fledged operating system as most people would expect it. Since Linux has to work on servers and microchips as well as on desktop PCs, lots of stuff is not shipped with it.

    For example Linux is missing a way to display windows and has no real package manager.

    A distro (or distribution) is a predefined set of of software, that makes it easier for a user to use Linux.

    This is mostly a window manager or desktop environment like KDE or GNOME, a package manager like apt or pacman and useful software like an office suite, a browser and other stuff.

    Distros also exist for servers, the ln they don’t include a way to display images, but still have a package manager and other useful stuff preinstalled.

    That’s of course not all, but maybe gives you a little overview.