Pip install tutor[full] failing

Hi all, I tried to search for an answer before posting.

I tried to run the command pip install tutor[full], on Windows 11 and I have python 3.11.

I receive the error below. I installed the recommend build tools, restart my pc, but I seem to be encountering the same issue.

Has anyone ran into the same issue? Thank you

Building wheels for collected packages: tutor-license
Building wheel for tutor-license (pyproject.toml) … error
error: subprocess-exited-with-error

× Building wheel for tutor-license (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [12 lines of output]
running bdist_wheel
running build
running build_py
creating build
creating build\lib.win-amd64-cpython-311
creating build\lib.win-amd64-cpython-311\tutorlicense
copying tutorlicense\plugin.py → build\lib.win-amd64-cpython-311\tutorlicense
copying tutorlicense_about_.py → build\lib.win-amd64-cpython-311\tutorlicense
copying tutorlicense_init_.py → build\lib.win-amd64-cpython-311\tutorlicense
running build_ext
building ‘tutorlicense.cmd’ extension
error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++ Build Tools”: Microsoft C++ Build Tools - Visual Studio
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for tutor-license
Failed to build tutor-license
ERROR: Could not build wheels for tutor-license, which is required to install pyproject.toml-based projects

Was able to resolve this issue.

Turns out I manually have to select C++ build tools in the Visual Studio Build Tools installer, it doesn’t come installed by default.

Thanks everyone