Det kan være interessant at installere software på sin computer. Nogle gange skal man downloade en fil og derefter installere den selv, eller kopiere filer til bestemte steder på computeren.
Men pakkeadministratorer hjælper med at gøre denne proces lettere ved at muliggøre automatisering af installation af software.
Der er forskellige niveauer af pakkeadministratorer: til operativsystemet niveau, samt en specifikt til Python-pakker.
macOS
[Homebrew] (https://brew.sh/) er standarden for installation af software på
din Mac. Det er det system, der bruges, hvis du kører kommandoen brew install
.
kommando.
Linux
Afhængigt af hvilken familie af operativsystemer du kører, skal du bruge
apt-get
(til Debian og Ubuntu) eller yum
(til Red Hat og CentOS).
Python
pip
is the way you can install Python software. Running pip install
uses the Python Package Index, also known as
"PyPI". PyPI is a central repository for Python code. Many BeeWare
projects can be installed using pip
.