Briefly, this is source code initialized from uv. It's not like regular Python; you need to use winget install or pip install uv to install uv.
Like me, if you don't have Python, you can install uv as follows:
Open cmd and enter
winget install uvThen, enter
uv --versionto check. If it shows the uv version, it means you've succeeded.
It's very simple, just enter the command
uv add <library name>and it will add the package you requested.
For example
uv add pygameYou will be able to add the library.
It's very simple, you just need to enter the command
uv run main.pyand the code will be executed.