mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-05 18:58:53 -05:00
38 lines
976 B
ReStructuredText
38 lines
976 B
ReStructuredText
.. _install-arch:
|
|
|
|
============================
|
|
Installing Red on Arch Linux
|
|
============================
|
|
|
|
.. include:: _includes/supported-arch-x64.rst
|
|
|
|
.. include:: _includes/linux-preamble.rst
|
|
|
|
-------------------------------
|
|
Installing the pre-requirements
|
|
-------------------------------
|
|
|
|
Install the pre-requirements with pacman:
|
|
|
|
.. prompt:: bash
|
|
|
|
sudo pacman -Syu git jre17-openjdk-headless base-devel nano
|
|
|
|
On Arch Linux, Python 3.9 can be installed from the Arch User Repository (AUR) from the ``python39`` package.
|
|
|
|
The manual build process is the Arch-supported install method for AUR packages. You can install ``python39`` package with the following commands:
|
|
|
|
.. prompt:: bash
|
|
|
|
git clone https://aur.archlinux.org/python39.git /tmp/python39
|
|
cd /tmp/python39
|
|
makepkg -sicL
|
|
cd -
|
|
rm -rf /tmp/python39
|
|
|
|
.. Include common instructions:
|
|
|
|
.. include:: _includes/create-env-with-venv3.9.rst
|
|
|
|
.. include:: _includes/install-and-setup-red-unix.rst
|