-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Here you will find instructions on Installing the program for various operating systems.
Before using the program, you just install Python on your computer. The minimum required version is Python 3.10.
If you are not sure which version of Python you' have installed, use the python -V command (or the pip -V command).
Download the Windows installer from python.org/downloads/windows/ and execute it.
Download the macOS 64-bit universal2 installer from python.org/downloads/macos/ and execute it.
Alternatively, you can use Homebrew and install the python@3.10 formula
with brew install python@3.10.
Use your distribution's package manager to install the python package. The name may vary depending on the
distribution:
- Red Hat, CentOS or Fedora: install the
python3package - Debian or Ubuntu: install the
python3.10package - Arch: install the
pythonpackage - Gentoo: install the
=python-3.x*ebuild (you may have to unmask it first)
Most distributions of Python come with pip installed, however some Linux distributions do not
bundle pip with the python package.
To test if pip is installed, open a terminal and use the pip -V command. If it prints a "command not found" error,
then you need to install pip manually.
The suggested way is to use the python -m ensurepip --upgrade command, but you can also install it manually using your
distribution's package manager.
- Debian or Ubuntu: install the
python3-pippackage - Arch: install the
python-pippackage
With Python 3.10+ ready, FALocalRepo can now be installed using pip.
Open a terminal and run the following command:
pip install falocalrepoThat's it, FALocalRepo is now ready to start!