Installation
Using regular pip and venv tools
Creating a virtual environment :
python3 -m venv .venv
source .venv/bin/activate
It is recommended to use a virtual environment to install the package.
Installing the package :
pip install scikit-transformers [--upgrade] [--user]
Using poetry or pipenv
It is recommended to use a virtual environment to install the package.
pip install poetry
poetry init
poetry add scikit-transformers
Check the installation
You can check the installation by running the following command :
pip show scikit-transformers
or
pip list | grep scikit-transformers