python3.11 -m venv <your_venv_name>
source <your_venv_name>/bin/activate
shift+cmd+P then choose 'Python: select interpreter'
(Sometimes you need to manually enter interpreter path. For that, right click your venv, copy path, paste into enter interpreter path and enter).
pip install -r requirements.txt
py -3.11 -m venv <your_venv_name> OR
for python 3.11 use \python.exe" -m venv <your_venv_name>
path to python can be found using "where python"
.<your_venv_name>\Scripts\Activate (Powershell)
Press: Ctrl + Shift + P
Type: Python: Select Interpreter
Pick the one from your venv
If not detected: right click venv on left pane, copy path and paste into interpreter path and enter.
pip install -r requirements.txt