To run jupyter notebooks within WSL2 : Setup instructions
Create an a new virtual env:
conda create --name ml
Switch over to ml Python environment:
conda activate ml
Uninstall conda's version of pillow if it is installed:
conda uninstall --force pillow
Install pip version of pillow:
pip install pillow
Install other packages:
pip install numpy matplotlib pandas scikit-learn tensorboard tensorflow-cpu
Enter powershell command:
WSL --shutdown