Installation
First we must make sure we have foxai
installed:
$ python -m pip install foxai
Installation from source
You can build wheel
with Python package yourself. To do so clone repository first.
$ git clone https://github.com/softwaremill/FoXAI.git
$ cd FoXAI/
Then setup development environment by installing Poetry
and project dependencies.
$ curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.2.1 python3 -
$ poetry config virtualenvs.create true
$ poetry config virtualenvs.in-project true
$ poetry install
Next step is to build wheel
package.
$ poetry build
After executing those commands You will get wheel
file in dist/
directory. To install this package run:
$ python -m pip install dist/<wheel_file>.whl