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 llm-workshop-1 -y python=3.11Activate the new conda environment
conda activate llm-workshop-1Make sure env is swithced to llm-workshop-1.
Make sure python version is 3.11
python --versionNote: If you are on a linux system install these too
conda install gcc_linux-64
conda install gxx_linux-64Get the repo
git clone https://github.com/sujee/llm-workshopcd llm-workshopinstall all needed packages
pip install -r requirements.txtInstall a custom kernel
python -m ipykernel install --user --name=llm-workshop --display-name llm-workshopjupyter labWhen running Jupyter notebooks, if data prep kit libraries are not found, try selecting the custom kernel you created (llm-workshop)