I've installed a newer version of Python under wsl2 using:
pyenv install 3.9.6 pyenv global 3.9.6
Before I was using 3.8
When I pip install it still looks in the previous pip path related to Python 3.8.5. for already installed packages:
/home/ludo915/.local/lib/python3.8/site-packages
How do I update the path to where pip install installs packages and what exactly am I supposed to set it to?
Ludo