Installation
Warning
This project is experimental and is in alpha. We do our best to keep things stable but you should assume that if you do not specify a version number that certain functionality can break.
Install scikit-lego via pip with
pip install scikit-lego
Via conda with
conda install -c conda-forge scikit-lego
Alternatively you can fork/clone and run:
git clone https://github.com/koaning/scikit-lego
pip install --editable .
Dependency installs
Some functionality can only be used if certain dependencies are installed. This can be done by specifying the extra dependencies in square brackets after the package name. Currently supported extras are cvxpy and all (which installs all extras). You can specify these as follows:
pip install scikit-lego[cvxpy]
or from a local clone:
pip install --editable ".[cvxpy]"