Instructions to install the package from different sources.
pip install mlforecast
pip install "mlforecast==0.3.0"
to install the 0.3.0 versionpip install "mlforecast<0.4.0"
to install any version prior to
0.4.0pip install "mlforecast[polars]"
pip install "mlforecast[aws]"
pip install "mlforecast[gcp]"
pip install "mlforecast[azure]"
pip install "mlforecast[dask]"
pip install "mlforecast[ray]"
pip install "mlforecast[spark]"
conda install -c conda-forge mlforecast
Note that this happens about a day later after it is published to PyPI,
so you may have to wait to get the latest release.
conda install -c conda-forge "mlforecast==0.3.0"
to install the
0.3.0 versionconda install -c conda-forge "mlforecast<0.4.0"
to install any
version prior to 0.4.0pip install git+https://github.com/Nixtla/mlforecast
git clone https://github.com/Nixtla/mlforecast mlforecast-dev && pip install mlforecast-dev/
,
which will install the version from the current main branch.