Skip to content

Installation

José Manuel Martín Luque edited this page Jun 6, 2023 · 3 revisions

Installation

Below are the supported methods of installation.

Installing with Pip

$ pip install sensitibot

Downloading the package and installing

First, download the package from SensitiBot's PyPI page.

# Navigate to the directory that contains the downloaded package
$ cd path/to/package

# Install SensitiBot using pip
# Replace X.X.X with version to match the package's name
$ pip install sensitibot-X.X.X-py3-none-any.whl

Packaging with Poetry and installing

# Clone repository
$ git clone https://github.com/TFG-SensitiBot/SensitiBot.git

# Navigate to repository´s directory
$ cd SensitiBot

# Install Poetry
$ pip install poetry

# Create package using Poetry
$ python -m poetry build

# Navigate to directory dist
$ cd dist

# Install SensitiBot using pip
# Replace X.X.X with version to match the package's name
$ pip install sensitibot-X.X.X-py3-none-any.whl

Installing with Poetry

# Clone repository
git clone https://github.com/TFG-SensitiBot/SensitiBot.git

# Navigate to repository´s directory
$ cd SensitiBot

# Install Poetry
$ pip install poetry

# Install SensitiBot using Poetry
$ python -m poetry install

Clone this wiki locally