I need to use Python 3.11 or lower for a library that I need, but I don’t know how to set up an environment for it.
In my terminal, tried to do
python3.11 -m venv .venv
but i get
python3.11' is not recognized as an internal or external command,
operable program or batch file.
Instead, i tried to just put in the path to python3.11, so I did
C:UsersforhaAppDataLocalProgramsPythonPython311python.exe -m venv .venv
and I get this pop up:
I’m not sure how I can set up the python environment, so thanks in advance for the help.