Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Installation

Richard Mwewa edited this page May 13, 2023 · 1 revision

Install from PyPI

fbi-api can be installed from pypi using the command:

pip install fbi-api

Install from GitHub

pip install git+https://github.com/rly0nheart/fbi-api.git

Build & Install from source

Or if you wish to build it from source, you can follow these steps:

1. Clone the repository

git clone https://github.com/rly0nheart/fbi-api

2. Move to fbi-apidirectory

cd fbi-api

3. Build the wheel file Before you start building the wheel, you should first install the build package (if you dont already have it)

pip install build

Once the build package is installed, you can now run the following command to start building:

python -m build

4. Installing the wheel When building is complete, you will now run the following command to install the built wheel

Linux

pip install dist/*.whl

Windows

CMD

for %I in (.\dist\*.whl) do pip install "%I"

Powershell

Get-ChildItem .\dist\*.whl | ForEach-Object {pip install $_.FullName}

This will look for a file with the .whl extension in the dist directory and install it

Clone this wiki locally