You can install Anaconda by following the guide here.
We will create an environment for this workshop with all the required libraries installed.
conda create -n data-prep-kit-1 -y python=3.11Activate the new conda environment
conda activate data-prep-kit-1Make sure env is swithced to data-prep-kit-1.
Make sure python version is 3.11
python --versionNote: If you are on a linux system install these too
conda install -y gcc_linux-64
conda install -y gxx_linux-64Get the repo
git clone https://github.com/sujee/data-prep-kit-examplescd data-prep-kit-examplesinstall all needed packages
pip install -r requirements.txtInstall a custom kernel
python -m ipykernel install --user --name=data-prep-kit --display-name "dataprepkit"jupyter labWhen running Jupyter notebooks, if data prep kit libraries are not found, try selecting the custom kernel you created (dataprepkit)