Python libraries are a shitshow, i'm sorry 😣. Even worse on windows. There's some weird alchemy we all do to break through it finally working but none of us know how it works or how we got there.
I use conda/mamba. When that's installed, my juju is
```
mamba create -n nameofproject python=3.11
mamba activate nameofproject
mamba install library1 library2
# or, if it doesn't work with mamba install, use pip
pip install library3 library4
```