Installation error - pydantic

I’ve downloaded it with my personal license and I keep running into this error of pydantic:

Traceback (most recent call last):
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 196, in run_module_as_main
return run_code(code, main_globals, None,
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 86, in run_code
exec(code, run_globals)
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\prodigy_main
.py", line 50, in
main()
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\prodigy_main.py", line 24, in main
from prodigy.app import server
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\prodigy\app.py", line 22, in
from .auth import (
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\prodigy\auth.py", line 14, in
from .types import JWTPayload
File "C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\prodigy\types.py", line 22, in
from pydantic import (
ImportError: cannot import name 'model_validator' from 'pydantic' (C:\Users\kangh\AppData\Local\Programs\Python\Python310\lib\site-packages\pydantic_init.cp310-win_amd64.pyd)

Hi! It looks like you ended up with mismatched versions of pydantic, maybe because something else was already installed in your Python environment? To make sure you get the right version, try re-installing Pydantic with the version range specified by Prodigy:

pip install "pydantic>=1.10.8,<3.0"

(Btw, in general, it can be helpful to set up separate virtual environments for different projects in Python so you don't end up with version conflicts caused by different packages and can easily start over. So as an alternative option, you can create a fresh virtual environment and install Prodigy into it from scratch!)