User Tools

Site Tools

tools:package-manager

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tools:package-manager [2024/07/02 06:29] – [Package Managers for Other Operating Systems] Humphrey Boa-Garttools:package-manager [2024/09/24 02:54] (current) – [Important Note on Linux Package Security] Humphrey Boa-Gart
Line 9: Line 9:
 A cheat sheet for most major Linux package managers can be found at [[https://distrowatch.com/dwres.php?resource=package-management|DistroWatch]].(([[https://web.archive.org/web/20240629230229/https://distrowatch.com/dwres.php?resource=package-management|Archived version of cheat sheet for common Linux package managers]])) A cheat sheet for most major Linux package managers can be found at [[https://distrowatch.com/dwres.php?resource=package-management|DistroWatch]].(([[https://web.archive.org/web/20240629230229/https://distrowatch.com/dwres.php?resource=package-management|Archived version of cheat sheet for common Linux package managers]]))
  
-The two most common package formats on most of the mainstream distros are [[wp>deb (file format)|.deb]] (used with ''apt'' and ''aptitude'' package managers) and [[wp>RPM Package Manager|.rpm]] (used with ''dnf'', ''yum'', and other package managers). Some Linux distros have unique package formats and accompanying package managers all to themselves. Everything you need to know is on the cheat sheet linked above.+The two most common package formats on most of the mainstream distros are [[wp>deb (file format)|deb]] (used with ''apt'' and ''aptitude'' package managers) and [[wp>RPM Package Manager|rpm]] (used with ''dnf'', ''yum'', and other package managers). Some Linux distros have unique package formats and accompanying package managers all to themselves. These package managers keep track of the required dependencies for everything installed, and stores them in one big pool of shared dependencies that all the applications on the system can use. Everything you need to know is on the cheat sheet linked above.
  
 ==== Flatpak & Snap ==== ==== Flatpak & Snap ====
  
-[[tools:flatpak|Flatpak]] is a type of package manager that packages the application and all of its dependencies inside a [[wp>Containerization (computing)|container]]. In the Linux world, some applications are just gonna be better off deployed automatically with Flatpak instead of the OS's built in package manager. Some distros now come with Flatpak preinstalled. You can even use a [[tools:bash:customization#aliases|bash alias]] to have both your system updates and Flatpak updates go off with a single update command.+[[tools:flatpak|Flatpak]] is a type of package manager that packages the application and all of its dependencies inside a [[wp>Containerization (computing)|container]]. In the Linux world, some //(only some)// applications are gonna be better off deployed with Flatpak instead of the OS's built in package manager. Some distros now come with Flatpak preinstalled. You can even use a [[tools:bash:customization#aliases|bash alias]] to have both your system updates and Flatpak updates go off with a single update command.
  
-**Snap** is a similar, more frustrating version of Flatpak, bundled with Ubuntu. Luckily, if it is on your system, it is [[tools:snap|easy to replace with Flatpak]].+**Snap** is a similar, more frustrating version of Flatpak, bundled with Ubuntu. Luckily, if it is on your system, it is [[tools:flatpak#snap|easy to replace with Flatpak]].
  
 ==== Important Note on Linux Package Security ==== ==== Important Note on Linux Package Security ====
  
 While 95% of the software most Linux end users are ever gonna need, can be found in pre-configured form in the right package manager repositories, there is a downside: Not all of the pre-packaged versions of the software in these repositories is up-to-date. Sometimes it is, but in many cases you will have to find the source and compile it yourself to get the latest patches. While 95% of the software most Linux end users are ever gonna need, can be found in pre-configured form in the right package manager repositories, there is a downside: Not all of the pre-packaged versions of the software in these repositories is up-to-date. Sometimes it is, but in many cases you will have to find the source and compile it yourself to get the latest patches.
 +
 +//**This applies doubly-so for Flatpak & Snap users.** Since the maintainers of those packages are now responsible for updating all of the dependencies their packages, they are no longer updated by the system. Many app developers just forget about these dependencies, and it is far harder and more annoying to update someone's [[https://blog.brixit.nl/developers-are-lazy-thus-flatpak/|containerized semi-distribution masquerading as an app]] than it is your own system.//
  
 ===== Package Managers for Other Operating Systems ===== ===== Package Managers for Other Operating Systems =====
Line 25: Line 27:
 In the smartphone and tablet ecosystem, **Android** and **iOS** have their own bundled package managers, which take the form of the built-in update services and rudely gatekept app stores. Short of hacking the hell out of your device, what you see is what you get. In the smartphone and tablet ecosystem, **Android** and **iOS** have their own bundled package managers, which take the form of the built-in update services and rudely gatekept app stores. Short of hacking the hell out of your device, what you see is what you get.
  
-**Windows** and **MacOS** have their own built-in update services that function as the core package managers for the system, providing all the first-party software. Recent versions of these operating systems now include smartphone-like app stores, kept updated with the rest of the system software. Further applications (like third-party web browsers) have their own built-in update services on top of this. Other third-party applications you may have to keep track of updates yourself.+**Windows** and **MacOS** have their own built-in update services that function as the core package managers for the system, providing all the first-party software. Recent versions of these operating systems now include smartphone-like app stores, kept updated with the rest of the system software. Further applications (like third-party web browsers) have their own built-in update services on top of this. Other third-party applications you may have to keep track of updates and dependencies yourself.
 ===== Package Managers for Programming & Scripting Languages ===== ===== Package Managers for Programming & Scripting Languages =====
  
-Various {{tagpage>Programming|programming and scripting languages}} have their own package management suites as well:+Various {{tagpage>Programming|programming and scripting languages}} have their own package management suites as well.
  
-==== CSS & JavaScript ====+The **[[tools:package-manager#important-note-on-linux-package-security|aforementioned security consideration]]** for Linux packages, applies equally as so to packages available with these package managers: Some of them are kept up-to-date by the official maintainers of the software. Others are not. Some of them are maintained by slow or even malevolent middlemen. Use discretion and caution here, and keep in mind you may have to still manually find, install & update things yourself. 
 + 
 +While many of the packages found with these package managers are not practical for production environments, their ease of installation makes them really useful for rapid prototyping. Your mileage may vary. 
 + 
 +==== bash ==== 
 + 
 +Even simple [[tools:bash]] has a package manager now, in the form of [[https://bpkg.sh|bpkg]]. 
 + 
 +==== JavaScript & CSS ==== 
 + 
 +For [[tools:javascript|JavaScript]] the most common package manager is [[https://www.npmjs.com|npm]], which can be used independently, or with frontends such as [[https://yarnpkg.com|Yarn]] or [[https://pnpm.io|pnpm]]. 
 + 
 +''npm'' can also be used to install CSS scripting tools, such as [[https://sass-lang.com|Sass]] and [[https://lesscss.org|Less]], keeping both of these things in one place. This is very useful since JavaScript is primarily a frontend web language (atrocities like [[https://nodejs.org|Node.js]] aside) and CSS is a crucial part of that very same frontend.
  
 ==== PHP ==== ==== PHP ====
  
 +The most popular and well supported package manager for [[tools:php|PHP]] is [[https://getcomposer.org|Composer]]. The easiest way to browse most of the packages available to install with Composer, is with [[https://packagist.org|Packagist]].
 +
 +==== Python ====
 +
 +With [[tools:python|Python]], the package manager you will be using is ''pip'' and everything you need to know about it is detailed on [[https://packaging.python.org/en/latest/tutorials/installing-packages/|Python.org]] and [[https://pip.pypa.io/en/stable/user_guide/|in the docs]].
  
  
 {{tag>Tools}} {{tag>Tools}}
tools/package-manager.1719901743.txt.gz · Last modified: 2024/08/06 05:52 (external edit)

Find this page online at: https://bestpoint.institute/tools/package-manager