Looks like Windows still can’t find Python on your PATH. Let’s fix that fast.
Close all CMD/PowerShell windows and open a fresh Command Prompt, then run:
If it still says not recognized, continue.
Replace Chris if your username is different, then run these two commands in CMD:
setx PATH "%PATH%;C:\Users\Chris\AppData\Local\Programs\Python\Python311\"
setx PATH "%PATH%;C:\Users\Chris\AppData\Local\Programs\Python\Python311\Scripts\"
Close CMD, open a new one, then:
If you installed to a different folder, adjust the paths. Common alt path:
C:\Program Files\Python311\ and ...\Python311\Scripts\
If step 2 doesn’t work, rerun the Python 3.11 installer:
- Choose Modify → ensure “pip” and “py launcher” are checked.
- Check “Add python.exe to PATH” (or choose Repair).
Then try:
These should print the paths to your python/pip. If they don’t, the PATH isn’t set to the right folder.
Once python and pip work, we’ll verify cuDNN next.